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

Authorization
string
header
required

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.
data
object[]