✨ GameBoost API v2 is now live!
curl --request GET \
--url https://api.gameboost.com/v2/currency-offers/{currencyOffer} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"uuid": "<string>",
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"currency_unit": {
"slug": "<string>",
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"title": "<string>",
"description": "<string>",
"parameters": {},
"base_currency": "<string>",
"status": "draft",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"delivery_instructions": "<string>",
"stock": 123,
"min_quantity": 123,
"price_eur": "<string>",
"price_usd": "<string>",
"views": 123,
"icon_url": "<string>",
"created_at": 123,
"updated_at": 123,
"listed_at": 123
}
}Retrieve detailed information about a specific currency offer including pricing, stock availability, and delivery details.
curl --request GET \
--url https://api.gameboost.com/v2/currency-offers/{currencyOffer} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": 123,
"uuid": "<string>",
"game": {
"id": 123,
"name": "<string>",
"slug": "<string>"
},
"currency_unit": {
"slug": "<string>",
"currency_name": "<string>",
"name": "<string>",
"symbol": "<string>",
"multiplier": 123
},
"title": "<string>",
"description": "<string>",
"parameters": {},
"base_currency": "<string>",
"status": "draft",
"delivery_time": {
"duration": 123,
"unit": "minutes",
"format": "<string>",
"format_long": "<string>",
"seconds": 123
},
"delivery_instructions": "<string>",
"stock": 123,
"min_quantity": 123,
"price_eur": "<string>",
"price_usd": "<string>",
"views": 123,
"icon_url": "<string>",
"created_at": 123,
"updated_at": 123,
"listed_at": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the currency offer. Can be retrieved from the list of currency offers.
A single currency offer
Currency offer object representing in-game currency for sale
Show child attributes
Unique identifier for the currency offer
Universally unique identifier for the currency offer
Currency unit object representing a denomination of in-game currency
Show child attributes
URL-friendly identifier for the currency unit
Full name of the in-game currency (e.g., "Gold", "Credits")
Display name of this unit denomination
Symbol or abbreviation for the unit (e.g., "K", "M", "B")
Numeric multiplier for unit conversion (e.g., 1000 for thousands, 1000000 for millions)
Display name for the currency offer
Detailed description of the currency and how it will be delivered
Game-specific parameters such as server, realm, or faction
Base currency code used for pricing
Current status of the currency offer
draft, listed, 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
Special instructions for currency delivery, provided to buyer after purchase
Available quantity of currency units in stock
Minimum quantity that can be purchased in a single order
Price per unit in EUR currency. If EUR is not the base currency, this value is calculated using current exchange rates
Price per unit in USD currency. If USD is not the base currency, this value is calculated using current exchange rates
Total number of times this currency offer has been viewed
URL to the currency icon image
Unix timestamp when the currency offer was created
Unix timestamp of the last modification to the currency offer
Unix timestamp when the currency offer was made publicly available
Was this page helpful?