Accounts
Item Offers
Currency Offers
Currency Orders
Get All Accounts
Retrieve a list of all accounts associated with the authenticated user. Use the optional with_data
query parameter to load full account details.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
Unique identifier for the account.
Resource type, fixed as "accounts".
accounts
Title of the account listing.
Slug/uri of the account listing.
Description of the account.
Slug representing the game associated with the account (e.g., "league-of-legends").
Status of the account (e.g., "Listed").
Draft
, Pending
, Listed
, Processing
, Sold
, Refunded
Server of the account (e.g., "EUW").
Method used to level up the account.
Handmade
, Botted
In-game name (IGN) associated with the account.
Login username for the account.
Password for the account.
Optional email login associated with the account.
Optional password for the associated email.
Price of the account.
Additional game specific data of the account.
Trend score of the account.
Indicates if the account is featured.
Indicates if the account is marked as rare.
Indicates if the account is currently discounted.
List of URLs for images of the account.
Timestamp indicating when the account was created.
Timestamp indicating when the account was sold.
Timestamp of the last update to the account.
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
}
}
]
}