Skip to main content

Collections

Collections are groupings of products or collections, such as PC Games, Credits for PC Online Games or Adventure Games

How to make a request?

GET /catalog/collections returns just collections without products

GET /catalog/collections
curl --location --request GET 'https://stock.hype.games/api/catalog/collections' \
--header 'Authorization: Bearer ACCESS-TOKEN-HERE' \
--header 'Content-Type: application/json' \

Response example

[
{
"id": 2,
"name": "Free Fire + Bônus",
"description": null,
"image": "https://img.hype.games/cdn/9d47e3b3-601a-4b3d-8e9a-55baef9651e82018-11-26_DFP-freefire.jpg",
"coverImage": null,
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": "Como Resgatar: Adquirir seus créditos é moleza! Após concluir ...",
"collections": [],
"products": [],
"tags": []
},
{
"id": 3,
"name": "Créditos para Jogos Online PC",
"description": null,
"image": "https://img.hype.games/cdn/ab4bf1f9-a4b7-4362-bde6-717f86bdcafbCover_PINHype_1.jpg",
"coverImage": null,
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": null,
"collections": [
{
"id": 12,
"name": "Ragnarök Online",
"description": null,
"image": "https://img.hype.games/cdn/abf1f010-810e-4e3e-9c59-dbfaff5db9eb26e576df-d467-4f87-b846-873f9b0823914a768693-b744-459a-9760-14f1a528f55dragnarok-cover.jpg",
"coverImage": null,
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": "Como Resgatar: Adquirir seus créditos é moleza! Após concluir ...",
"collections": [],
"products": [],
"tags": []
}
],
"products": [],
"tags": []
}
]

Collection Products

GET /catalog/collections/:id returns one collection with products

GET /catalog/collections/:id
curl --location --request GET 'https://stock.hype.games/api/catalog/collections/12' \
--header 'Authorization: Bearer ACCESS-TOKEN-HERE' \
--header 'Content-Type: application/json' \

Response example

{
"id": 12,
"name": "Ragnarök Online",
"description": null,
"image": "https://img.hype.games/cdn/abf1f010-810e-4e3e-9c59-dbfaff5db9eb26e576df-d467-4f87-b846-873f9b0823914a768693-b744-459a-9760-14f1a528f55dragnarok-cover.jpg",
"coverImage": "https://img.hype.games/cdn/abf1f010-810e-4e3e-9c59-dbfaff5db9eb26e576df-d467-4f87-b846-873f9b0823914a768693-b744-459a-9760-14f1a528f55dragnarok-cover.jpg",
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": "Para resgatar siga para ...",
"collections": [],
"products": [
{
"id": 1507,
"name": "Ragnarök - Pacote de 125.550 ROPs",
"salesPrice": 179.9,
"partnerCostPrice": 179.9,
"partnerCostPercent": 0.0,
"image": "https://img.hype.games/cdn/e651e702-7624-4aab-8557-ebbf00f8c5ccROPS%202%20MELHOR%20OFERTA.png",
"coverImage": "https://img.hype.games/cdn/e651e702-7624-4aab-8557-ebbf00f8c5ccROPS%202%20MELHOR%20OFERTA.png",
"termsAndConditions": "Não coletamos intencionalmente dados de crianças (abaixo de 13 anos)...",
"howToRedeem": "Para resgatar siga para ...",
"countryCode": "BR",
"salesCurrencyCode": "BRL",
"salesCurrencySymbol": "R$",
"tags": []
}
]
}