✨ New Gift Cards API Live Now - Beta!
curl --request GET \
--url https://api.gameboost.com/v2/gift-cards \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"region_id": 123,
"brand_id": 123,
"region": {
"id": 123,
"code": "<string>",
"name": "<string>",
"slug": "<string>",
"is_country": true
},
"brand": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"title": "<string>",
"face_value_amount": "<string>",
"face_value_unit": "<string>",
"face_value_unit_slug": "<string>",
"lowest_price_eur": "<string>",
"lowest_price_usd": "<string>",
"highest_price_eur": "<string>",
"highest_price_usd": "<string>",
"is_enabled": true,
"created_at": 123,
"updated_at": 123
}
],
"meta": {
"current_page": 123,
"from": 123,
"last_page": 123,
"per_page": 123,
"to": 123,
"total": 123
},
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
}
}Retrieve a paginated list of gift cards (catalog entries) with optional price range.
curl --request GET \
--url https://api.gameboost.com/v2/gift-cards \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"region_id": 123,
"brand_id": 123,
"region": {
"id": 123,
"code": "<string>",
"name": "<string>",
"slug": "<string>",
"is_country": true
},
"brand": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"title": "<string>",
"face_value_amount": "<string>",
"face_value_unit": "<string>",
"face_value_unit_slug": "<string>",
"lowest_price_eur": "<string>",
"lowest_price_usd": "<string>",
"highest_price_eur": "<string>",
"highest_price_usd": "<string>",
"is_enabled": true,
"created_at": 123,
"updated_at": 123
}
],
"meta": {
"current_page": 123,
"from": 123,
"last_page": 123,
"per_page": 123,
"to": 123,
"total": 123
},
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.gameboost.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Items per page (max 50)
1 <= x <= 50Was this page helpful?