GET
/
accounts
curl --request GET \
  --url https://api.gameboost.com/v1/accounts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "accounts",
      "attributes": {
        "title": "<string>",
        "slug": "<string>",
        "description": "<string>",
        "game_slug": "<string>",
        "status": "Draft",
        "server": "<string>",
        "level_up_method": "Handmade",
        "ign": "<string>",
        "login": "<string>",
        "password": "<string>",
        "email_login": "<string>",
        "email_password": "<string>",
        "price": 123,
        "data": {},
        "trend_score": 123,
        "is_featured": true,
        "is_rare": true,
        "is_discounted": true,
        "images": [
          "<string>"
        ],
        "created_at": 123,
        "sold_at": 123,
        "updated_at": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

with_data
boolean
default:
false

Response

200 - application/json
Successfully retrieved the list of accounts.
data
object[]