Skip to main content
POST
/
accounts
Create Account
curl --request POST \
  --url https://api.gameboost.com/v1/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "game": "<string>",
  "title": "<string>",
  "price": 123,
  "login": "<string>",
  "password": "<string>",
  "has_2fa": true,
  "description": "<string>",
  "image_urls": [
    "<string>"
  ],
  "account_data": {},
  "slug": "<string>",
  "ign": "<string>",
  "email_login": "<string>",
  "email_password": "<string>",
  "is_manual": true,
  "delivery_time": {
    "duration": 123,
    "unit": "minutes"
  },
  "server": "<string>",
  "level_up_method": "by_hand",
  "dump": "<string>",
  "delivery_instructions": "<string>",
  "game_items": {}
}
'
{
  "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.

Body

application/json
game
string
required

The game associated with the account (e.g., "fortnite", "league-of-legends").

title
string
required

Title for the account listing.

price
number<float>
required

Price of the account in euro.

login
string
required

Login username for the account.

password
string
required

Password for the account.

has_2fa
boolean
required

Indicates if the account has two-factor authentication enabled.

description
string
required

Description of the account.

image_urls
string<uri>[]
required

URLs of images associated with the account.

account_data
object
required

Game specific data of the account, get the schema from the /accounts/template/{gameSlug} endpoint.

slug
string

Optional slug for the account listing.

ign
string

Optional in-game name (IGN) associated with the account.

email_login
string

Optional email login associated with the account.

email_password
string

Optional password for the associated email.

is_manual
boolean

Determines if the account is instant delivery or manual delivery. When set to true, the delivery_time field becomes required.

delivery_time
object

Optional delivery time for the account, required only when is_manual is set to true.

server
string

Required when the game has specific servers (e.g., "Europe West"). If not applicable for the game, this field should be omitted.

level_up_method
enum<string>

Method used to level up the account. This field is required when the game is "League of Legends" or "Valorant."

Available options:
by_hand,
by_bot
dump
string

Optional keywords and tags associated with the account.

delivery_instructions
string

Optional instructions for delivery of the account.

game_items
object

Contains game item collections such as characters, skins, etc.

Response

201 - application/json

Successfully created the account.

data
object