Accounts
Item Offers
Currency Offers
Currency Orders
Get All Currency Offers
Retrieve a list of all currency offers.
curl --request GET \
--url https://api.gameboost.com/v1/currency-offers \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "currencyOffers",
"attributes": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"game_slug": "<string>",
"currency_unit": {
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"description": "<string>",
"price": 123,
"stock": 123,
"min_quantity": 123,
"data": {},
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"formatLong": "<string>",
"seconds": 123
},
"status": "listed",
"created_at": "2023-11-07T05:31:56Z",
"listed_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
Unique identifier for the currency offer.
Resource type, fixed as "currencyOffers".
currencyOffers
Unique UUID for the currency offer.
Title of the currency offer.
Slug representing the game associated with the currency offer.
Details of the currency unit.
Name of the currency (e.g., "Gold").
Unit name (e.g., "Thousand").
Symbol representing the unit (e.g., "K").
Multiplier value for the unit (e.g., 1000 for "Thousand").
Description of the currency offer.
Price per unit of the currency offer in euro.
Available stock for the currency offer.
Minimum purchase quantity for the currency offer.
Game specific data associated with the currency offer.
Details of the delivery time for the currency offer.
Duration for delivery.
Unit of time for delivery duration.
minutes
, hours
, days
Short formatted delivery time (e.g., "5 min").
Long formatted delivery time (e.g., "5 minutes").
Delivery time in seconds.
Status of the currency offer.
listed
, draft
, archived
Timestamp of when the currency offer was created.
Timestamp of when the currency offer was listed.
Timestamp of the last update to the currency offer.
curl --request GET \
--url https://api.gameboost.com/v1/currency-offers \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"type": "currencyOffers",
"attributes": {
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"game_slug": "<string>",
"currency_unit": {
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"description": "<string>",
"price": 123,
"stock": 123,
"min_quantity": 123,
"data": {},
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"formatLong": "<string>",
"seconds": 123
},
"status": "listed",
"created_at": "2023-11-07T05:31:56Z",
"listed_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
]
}