Accounts
Item Offers
Currency Offers
Currency Orders
Accounts
Get Account by Login
Retrieve details of a specific account by its login.
GET
/
accounts
/
by-login
/
{accountLogin}
Copy
curl --request GET \
--url https://api.gameboost.com/v1/accounts/by-login/{accountLogin} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Successfully retrieved the account.
The response is of type object
.
Copy
curl --request GET \
--url https://api.gameboost.com/v1/accounts/by-login/{accountLogin} \
--header 'Authorization: Bearer <token>'
Copy
{
"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
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.