v1

latestOpenAPI 3.0.02026-07-26117342409.6 KB
Quote Executions

List Quote Executions

List quote executions within a particular profile.

get/profiles/{profile_id}/quote-executions

Path parameters

profile_idstring required

The profile ID associated with the orders.

Query parameters

side'BUY' | 'SELL'

Filter by buy or sell side.

market'ETHEUR' | 'ETHSGD' | 'ETHUSD' | 'BTCEUR' | 'BTCSGD' | 'BTCUSD' | 'PAXGUSD' | 'BCHUSD' | 'LTCUSD' | 'USDPUSD' | 'LINKUSD' | 'AAVEUSD' | 'UNIUSD' | 'PEPEUSD' | 'TRUMPUSD' | 'SHIBUSD' | 'ARBUSD' | 'BONKUSD' | 'ENAUSD' | 'MNTUSD' | 'ONDOUSD' | 'PENGUUSD' | 'QNTUSD' | 'RENDERUSD' | 'SKYUSD' | 'WIFUSD' | 'WLDUSD' | 'DOGEUSD' | 'AVAXUSD' | 'SUIUSD' | 'POLUSD' | 'XLMUSD' | 'BNBUSD'

Filter by the trading pair.

status'CREATED' | 'SETTLED'

Filter by the status of the order.

created_at.beginstring date-time

Only return records after this timestamp, inclusive. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.endstring date-time

Only return records before this timestamp, inclusive. RFC3339 format, like 2006-01-02T15:04:05Z.

limitinteger

Number of results to return.

order'DESC' | 'ASC'

Return items in ascending (ASC) or descending (DESC) order. Default order is descending (DESC).

order_by'CREATED_AT'

The specific method by which the returned results will be ordered.

page_cursorstring

Cursor token for fetching the next page. If using this then do not use pagination.limit and pagination.offset fields.

Response

A successful response.

total_countinteger
next_page_cursorstring

Cursor token required for fetching the next page.

Example response

{
  "items": [
    {
      "id": "43a59965-be3a-45ab-841d-c55386e0ff90",
      "profile_id": "b7b77d82-e6a7-4ae9-9904-36231aedf985",
      "quote_id": "366a26d2-3098-4226-a520-4bb43ae4d922",
      "status": "SETTLED",
      "market": "BTCUSD",
      "side": "BUY",
      "price": "6001.2",
      "base_amount": "2.35",
      "base_asset": "BTC",
      "quote_amount": "14102.82",
      "quote_asset": "USD",
      "created_at": "2020-01-17T18:36:31.345Z",
      "settled_at": "2020-01-17T18:36:32.123Z",
      "metadata": {
        "customer_id": "9b8c9cba-801e-4418-adc0-ede709df6339"
      }
    }
  ]
}