Products
Get product information
The below fields are mandatory in your request.
Path Parameters | Description |
---|---|
id | The product id |
GET catalog/products/:id returns all information about the product, including the collections to which it belongs
GET catalog/products/:id
curl --location --request GET 'https://stock.hype.games/api/catalog/products/28' \
--header 'Authorization: Bearer ACCESS-TOKEN-HERE' \
--header 'Content-Type: application/json' \
Response example
The below fields are present in the response.
Field | Description |
---|---|
id | The product id |
name | Product name |
description | Product description |
salesPrice | Current product price that you can display to the customer |
partnerCostPrice | Product cost to you partner. Don't display to the customer |
image | Product image |
{
"id": 28,
"name": "Ragnarök - Pacote de 101.400 ROPS",
"description": "Os desafios, assim como os inimigos que tentem destruir a paz, nunca param de surgir. Logo, é preciso estar sempre equipado com o que há de melhor para não acabar sendo pego desprevenido. ",
"salesPrice": 149.9,
"partnerCostPrice": 149.9,
"image": "https://img.hype.games/cdn/296b333f-63a1-4abd-bf50-f3fb5ad258d9101400.jpg",
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)..",
"howToRedeem": "Importante: Após o pagamento, seus créditos serão entregues diretamente na conta de jogo inserido na hora da compra, não sendo mais possível realizar o cancelamento do pedido. ",
"collection": {
"id": 3,
"name": "Créditos para Jogos Online PC",
"image": "https://img.hype.games/cdn/ab4bf1f9-a4b7-4362-bde6-717f86bdcafbCover_PINHype_1.jpg",
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": null,
"collection": null
},
"collections": [
{
"id": 3,
"name": "Créditos para Jogos Online PC",
"image": "https://img.hype.games/cdn/ab4bf1f9-a4b7-4362-bde6-717f86bdcafbCover_PINHype_1.jpg",
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": null,
"collection": null
}
],
"countryCode": "BR",
"salesCurrencyCode": "BRL",
"salesCurrencySymbol": "R$"
}
tip
If you are integrating our service in a mobile application, it's a good idea to be able to change product availability on each platform separatelly.
We understand Terms change over time and understand the Terms from Google Play or App Store may differ in needs. Separating the platforms in your system is a good way to make sure your products will always be available.