✨ GameBoost API v2 is now live!
cURL
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 } } ] }
Retrieve a list of all accounts associated with the authenticated user. Use the optional with_data query parameter to load full account details.
with_data
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the list of accounts.
Show child attributes
Was this page helpful?