✨ New Gift Cards API Live Now - Beta!
curl --request GET \
--url https://api.gameboost.com/v2/gift-card-orders \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"gift_card_id": 123,
"gift_card_offer_id": 123,
"region_id": 123,
"brand_id": 123,
"buyer": {
"id": 123,
"username": "<string>"
},
"title": "<string>",
"face_value_amount": "<string>",
"face_value_unit": "<string>",
"quantity": 123,
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"price_eur": "<string>",
"price_usd": "<string>",
"status": "pending",
"keys": [
{
"id": 123,
"gift_card_order_id": 123,
"key": "<string>",
"type": {
"value": "text",
"name": "<string>"
},
"created_at": 123,
"revealed_at": 123
}
],
"created_at": 123,
"updated_at": 123,
"completed_at": 123,
"refunded_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 card orders for the authenticated seller.
curl --request GET \
--url https://api.gameboost.com/v2/gift-card-orders \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"gift_card_id": 123,
"gift_card_offer_id": 123,
"region_id": 123,
"brand_id": 123,
"buyer": {
"id": 123,
"username": "<string>"
},
"title": "<string>",
"face_value_amount": "<string>",
"face_value_unit": "<string>",
"quantity": 123,
"unit_price_eur": "<string>",
"unit_price_usd": "<string>",
"price_eur": "<string>",
"price_usd": "<string>",
"status": "pending",
"keys": [
{
"id": 123,
"gift_card_order_id": 123,
"key": "<string>",
"type": {
"value": "text",
"name": "<string>"
},
"created_at": 123,
"revealed_at": 123
}
],
"created_at": 123,
"updated_at": 123,
"completed_at": 123,
"refunded_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.
Search gift card orders by id
Filter by exact gift card id. Supports comma-separated values for multiple matches.
374097
Filter by exact gift card offer id. Supports comma-separated values for multiple matches.
953282
Filter by exact region id. Supports comma-separated values for multiple matches.
735836
Filter by exact brand id. Supports comma-separated values for multiple matches.
231504
Filter by exact buyer id. Supports comma-separated values for multiple matches.
124956
Filter by order status
pending, in_delivery, delivered, refunded "pending"
Filter by created at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).
"2019-08-14,2025-12-31"
Filter by updated at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).
"2025-10-05"
Filter by completed at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).
"2019-08-14,2025-12-31"
Filter by refunded at. Supports single date (YYYY-MM-DD) or date range (YYYY-MM-DD,YYYY-MM-DD).
"2019-08-14,2025-12-31"
Sort by field. Prefix with - for descending order.
id, -id, unit_price, -unit_price, price, -price, quantity, -quantity, created_at, -created_at, updated_at, -updated_at, completed_at, -completed_at "-created_at"
Items per page (max 50)
1 <= x <= 50Was this page helpful?