Currency Offers
Get All Currency Offers
Accounts
Item Offers
Currency Offers
Currency Orders
Currency Offers
Get All Currency Offers
Retrieve a list of all currency offers.
GET
/
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
200 - application/json
Successfully retrieved the list of currency offers.
The response is of type object
.
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"
}
}
]
}