✨ GameBoost API v2 is now live!
curl --request POST \
--url https://api.gameboost.com/v2/account-offers/{account}/list \
--header 'Authorization: Bearer <token>'{
"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
},
"message": "<string>",
"action": "<string>",
"previous_status": "<string>"
}Change the account offer status to ‘listed’ making it publicly available for purchase by buyers.
curl --request POST \
--url https://api.gameboost.com/v2/account-offers/{account}/list \
--header 'Authorization: Bearer <token>'{
"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
},
"message": "<string>",
"action": "<string>",
"previous_status": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the account offer. Can be retrieved from the list of account offers.
Account offer action result
Account offer object
Show child attributes
Unique identifier for the account offer
Account order IDs linked to this account
Display name for the account offer
URL-friendly identifier for the account offer
Detailed description of the account and its features
Account-specific attributes such as level, rank, champions unlocked, etc.
Searchable metadata including keywords, tags, and categorization terms
Current status of the account offer
draft, pending, listed, processing, sold, refunded, archived Delivery time object representing expected delivery duration
Show child attributes
Numeric value representing the delivery time
Time unit for the duration (minutes, hours, days)
minutes, hours, days Human-readable delivery time (e.g., "2 hr")
Extended format delivery time (e.g., "2 hours")
Total delivery time converted to seconds
Indicates if the account requires manual delivery by seller
Account credentials object containing login and email information
Show child attributes
Username or login identifier for the game account
Password for the game account
Email address used for account login
Password for the associated email account
Email service provider domain (e.g., gmail.com, proton.me)
Special instructions for account delivery, provided to buyer after purchase
Account price in EUR currency
Account price converted to USD using current exchange rates
Total number of times this account offer has been viewed
Array of image URLs showcasing the account
Unix timestamp when the account offer was created
Unix timestamp of the last modification to the account offer
Unix timestamp when the account offer was made publicly available
Action result message
Action performed
Previous status before action
Was this page helpful?