✨ New Gift Cards API Live Now - Beta!
curl --request GET \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"credentials": "<string>",
"account_offer_id": 123,
"account_order_id": 123,
"is_sold": true,
"created_at": 123,
"updated_at": 123
}
]
}Retrieve a paginated list of credentials for a specific account offer. Only available for non-legacy accounts (created via the new format endpoint).
curl --request GET \
--url https://api.gameboost.com/v2/account-offers/{account}/credentials \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"credentials": "<string>",
"account_offer_id": 123,
"account_order_id": 123,
"is_sold": true,
"created_at": 123,
"updated_at": 123
}
]
}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.
The ID of the account offer
Filter by exact credential ID
Filter by sold status (true/false)
Sort field. Prefix with - for descending. Allowed: id, created_at, updated_at
"-created_at"
Number of items per page (max 50)
x <= 50Paginated list of credentials
Show child attributes
Was this page helpful?