Refer friends and earn rewards this week
Kongo Docs

Get User Orders

List live orders for the authenticated account

Get Help
GET
/data/orders

Query Parameters

id?string

Filter by order identifier.

market?string

Filter by market/condition identifier.

asset_id?string

Filter by asset (token) identifier.

next_cursor?string

Base64-encoded offset for pagination. Use MA== to start; an empty response cursor means no more pages.

Response Body

application/json

application/json

curl -X GET "https://example.com/data/orders"
{  "data": [    {      "associateTrades": [        "string"      ],      "id": "string",      "status": "string",      "market": "string",      "originalSize": "string",      "outcome": "string",      "makerAddress": "string",      "owner": "string",      "price": "string",      "side": "BUY",      "sizeMatched": "string",      "assetId": "string",      "type": "FOK",      "createdAt": "2019-08-24T14:15:22Z"    }  ],  "next_cursor": "string",  "limit": 100,  "count": 0}
{  "error": "string"}