✨ GameBoost API v2 is now live!
curl --request GET \
--url https://api.gameboost.com/v2/account-orders/{accountOrder} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"account_offer_id": 123,
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"buyer": {
"id": 123,
"username": "<string>"
},
"rating": {
"id": 123,
"labels": [
"<string>"
],
"rating": 123,
"comment": "<string>",
"created_at": 123,
"updated_at": 123
},
"title": "<string>",
"description": "<string>",
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"is_manual_delivery": true,
"credentials": "<string>",
"delivery_instructions": "<string>",
"price": "<string>",
"price_usd": "<string>",
"image_urls": [
"<string>"
],
"created_at": 123,
"updated_at": 123,
"purchased_at": 123,
"completed_at": 123,
"refunded_at": 123
}
}Retrieve detailed information about a specific account order including buyer details, credentials, and delivery status.
curl --request GET \
--url https://api.gameboost.com/v2/account-orders/{accountOrder} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"account_offer_id": 123,
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"buyer": {
"id": 123,
"username": "<string>"
},
"rating": {
"id": 123,
"labels": [
"<string>"
],
"rating": 123,
"comment": "<string>",
"created_at": 123,
"updated_at": 123
},
"title": "<string>",
"description": "<string>",
"parameters": {},
"status": "pending",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"is_manual_delivery": true,
"credentials": "<string>",
"delivery_instructions": "<string>",
"price": "<string>",
"price_usd": "<string>",
"image_urls": [
"<string>"
],
"created_at": 123,
"updated_at": 123,
"purchased_at": 123,
"completed_at": 123,
"refunded_at": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the account order. Can be retrieved from the list of account orders, or from the parent account offer, or from webhooks.
A single account order
Account order object
Show child attributes
Unique identifier for the account order
Related account offer ID
Rating object representing feedback from a buyer
Show child attributes
Unique identifier for the rating
Array of predefined label names that categorize the rating feedback
Rating value (0=negative, 1=positive)
Rating comment text
Unix timestamp when the rating was created
Unix timestamp of the last modification to the rating
Display name for the account offer
Detailed description of the account and its features
Account-specific attributes such as level, rank, champions unlocked, etc.
Current status of the account order
pending, in_delivery, delivered, refunded 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 provided to buyer after purchase
Special instructions for account delivery, provided to buyer after purchase
Order price in EUR currency
Order price converted to USD using current exchange rates
Array of image URLs showcasing the account
Unix timestamp when the account order was created
Unix timestamp of the last modification to the account order
Unix timestamp when the account order was purchased
Unix timestamp when the account order was completed
Unix timestamp when the account order was refunded
Was this page helpful?