Trading
GET /v1/orders — List Your Purchase History
Page through your CSBoard purchase history with keyset pagination. Filter by time window and status; each order includes per-item delivery details.
GET
List purchase history
The orders endpoint returns your purchase history, newest first, using keyset pagination. Filter by a time window and by status, then walk older pages by passing
meta.next_cursor back as cursor. Each order carries a per-item breakdown with delivery status.
Authentication required. Send your key as Authorization: Bearer csb_pub_....
A
cancelled or failed order is always refunded — and the refund object is the receipt. An item can disappear from its source between the moment you read it and the moment we buy it; when that happens the order ends cancelled and the money is credited straight back, usually within seconds. Read refund.amount_usd / refund.refunded_at instead of inferring “refund pending” from the status. The full money trail lives at GET /v1/transactions.Query parameters
integer
default:"50"
Results per page. Minimum
1, maximum 100.integer
Only return orders created at or after this Unix timestamp (seconds).
integer
Only return orders created at or before this Unix timestamp (seconds).
string
Filter by order status. One of:
completed, hold, delivering, pending, cancelled, failed.string
Keyset cursor from a previous response’s
meta.next_cursor. Pass it to fetch the next page.Response fields
Order[]
required
Array of orders for this page.
object
required
Example request
Example response
Error codes
Authorizations
Send your key as a Bearer token on every request: Authorization: Bearer csb_pub_.... Generate keys in your CSBoard profile.
Query Parameters
Results per page. 1–100. Default 50.
Required range:
1 <= x <= 100Only orders created at or after this Unix timestamp (seconds).
Only orders created at or before this Unix timestamp (seconds).
Filter by order status.
Available options:
completed, hold, delivering, pending, cancelled, failed Keyset cursor from a previous response's meta.next_cursor.