Skip to main content
GET
/
orders
/
{id}
Get a single order
curl --request GET \
  --url https://csboard.com/v1/orders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "order_id": "ord_01J9Z3K8Q2",
  "steam_id": "76561198000000000",
  "status": "completed",
  "custom_id": "batch-2026-06-29-01",
  "currency": "USD",
  "charged_total_usd": 26.47,
  "item_count": 2,
  "hold_until": null,
  "created_at": "2026-06-29T17:12:04Z",
  "updated_at": "2026-06-29T17:15:40Z",
  "items": [
    {
      "market_hash_name": "AK-47 | Redline (Minimal Wear)",
      "price_usd": 14.37,
      "status": "delivered",
      "tradable_at": "2026-07-06T12:00:00Z",
      "return_reason": null,
      "steam_trade_offer_id": "5512345678",
      "steam_trade_offer_finished_at": "2026-06-29T17:15:40Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Send your key as a Bearer token on every request: Authorization: Bearer csb_pub_.... Generate keys in your CSBoard profile.

Path Parameters

id
string
required

CSBoard order id.

Response

The order.

order_id
string
required
status
enum<string>
required
Available options:
completed,
hold,
delivering,
pending,
cancelled,
failed
currency
string
required
Example:

"USD"

charged_total_usd
number
required
item_count
integer
required
created_at
string<date-time>
required
items
object[]
required
steam_id
string | null
custom_id
string | null

Your own id, if you set one at purchase time.

hold_until
string<date-time> | null
updated_at
string<date-time> | null