API
ReferenceAccount

Order history

GET
/public/v1/orders

Your order items, newest first. side is bought when you were the buyer and sold when you were the seller. Prices are integers in cents.

AuthorizationBearer <token>

API key generated from your account settings on the website. Send as Authorization: Bearer csd_....

In: header

Query Parameters

page*string
Match^[1-9]\d*$
limit*string

Value in

  • "5"
  • "10"
  • "25"
  • "30"
  • "50"
  • "100"

Response Body

application/json

curl -X GET "https://example.com/public/v1/orders?page=string&limit=5"
{  "orders": [    {      "order_item_id": 1,      "order_id": 1,      "side": "bought",      "app_id": 1,      "market_hash_name": "string",      "price": -9007199254740991,      "amount": -9007199254740991,      "created_at": "2019-08-24T14:15:22Z"    }  ],  "metadata": {    "total_pages": -9007199254740991,    "total_items": -9007199254740991,    "current_page": -9007199254740991,    "current_limit": -9007199254740991  }}