Skip to main content
POST
/
v2
/
account-offers
Create an account offer
curl --request POST \
  --url https://api.gameboost.com/v2/account-offers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "game_id": 123,
  "game": "<string>",
  "title": "<string>",
  "slug": "<string>",
  "description": "<string>",
  "dump": "<string>",
  "private_note": "<string>",
  "price": 10.99,
  "is_manual": false,
  "login": "<string>",
  "password": "<string>",
  "email_login": "<string>",
  "email_password": "<string>",
  "email_provider": "proton.me/mail",
  "delivery_instructions": "<string>",
  "delivery_time": {
    "duration": 10,
    "unit": "hours"
  },
  "game_items": {
    "champions": [
      "lol-aatrox",
      "lol-zed"
    ],
    "skins": [
      "lol-academy-ahri"
    ]
  },
  "image_urls": [
    "https://example.com/image1.jpg",
    "https://example.com/image2.jpg"
  ],
  "account_data": {}
}'
{
  "data": {
    "id": 123,
    "game": {
      "id": 123,
      "name": "<string>",
      "slug": "<string>"
    },
    "account_order_ids": [
      123
    ],
    "title": "<string>",
    "slug": "<string>",
    "description": "<string>",
    "parameters": {},
    "dump": "<string>",
    "status": "draft",
    "delivery_time": {
      "duration": 123,
      "unit": "minutes",
      "format": "<string>",
      "format_long": "<string>",
      "seconds": 123
    },
    "is_manual_delivery": true,
    "credentials": {
      "login": "<string>",
      "password": "<string>",
      "email_login": "<string>",
      "email_password": "<string>",
      "email_provider": "<string>"
    },
    "delivery_instructions": "<string>",
    "price": "<string>",
    "price_usd": "<string>",
    "views": 123,
    "image_urls": [
      "<string>"
    ],
    "created_at": 123,
    "updated_at": 123,
    "listed_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_id
integer
required

Unique identifier for the game (required if game slug not provided)

title
string
required

Display title for the account offer

Maximum length: 255
description
string
required

Detailed description of the account and its features

Maximum length: 2048
price
number
required

Account price in EUR currency, up to 2 decimal places

Required range: x >= 0.99
Example:

10.99

image_urls
string[]
required

Array of image URLs showcasing the account, imgur not supported

Minimum length: 1

Image URL

Example:
[
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
account_data
object
required

Specifics available via the template endpoint. Game-specific account attributes such as level, rank, champions unlocked, etc.

game
string

Slug of the game (required if game_id not provided)

slug
string

Custom URL-friendly identifier (auto-generated if not provided)

Maximum length: 255
dump
string

Searchable metadata including keywords, tags, and categorization terms

Maximum length: 2048
private_note
string

Private note only visible to you

Maximum length: 2048
is_manual
boolean
default:false

Indicates if account requires manual delivery by seller

login
string

Account login username (required if not manual delivery)

Maximum length: 255
password
string

Account password (required if not manual delivery)

Maximum length: 255
email_login
string

Email address associated with the account

Maximum length: 255
email_password
string

Password for the associated email account

Maximum length: 255
email_provider
string

Email service provider domain

Maximum length: 255
Example:

"proton.me/mail"

delivery_instructions
string

Special instructions for account delivery, provided to buyer after purchase, this field is not encrypted

Maximum length: 2048
delivery_time
object

Expected delivery time object (required if manual delivery)

Example:
{ "duration": 10, "unit": "hours" }
game_items
object

Object containing game item type slugs as keys with arrays of item names/slugs as values

Example:
{
"champions": ["lol-aatrox", "lol-zed"],
"skins": ["lol-academy-ahri"]
}

Response

Successfully retrieved account offer details

data
object

Account offer object

I