cURL
curl --request GET \ --url https://api.gameboost.com/v1/accounts/by-login/{accountLogin} \ --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 details of a specific account by its login.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the account.
The response is of type object.
object