v4

latestOpenAPI 3.0.02026-08-04103181301.4 KB
fcm

Get FCM Orders

Endpoint for FCM members to get orders filtered by subtrader ID. This endpoint requires FCM member access level and allows filtering orders by subtrader ID.

get/fcm/orders

Query parameters

subtrader_idstring required

Restricts the response to orders for a specific subtrader (FCM members only)

cursorstring

Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.

event_tickerstring

Event ticker to filter by. Only a single event ticker is supported.

tickerstring

Filter by market ticker

min_tsinteger

Restricts the response to orders after a timestamp, formatted as a Unix Timestamp

max_tsinteger

Restricts the response to orders before a timestamp, formatted as a Unix Timestamp

status'resting' | 'canceled' | 'executed'

Restricts the response to orders that have a certain status

limitinteger

Parameter to specify the number of results per page. Defaults to 100

Response

Orders retrieved successfully

cursorstring required

Example response

{
  "orders": [
    {
      "yes_price_dollars": "0.5600",
      "no_price_dollars": "0.5600",
      "fill_count_fp": "10.00",
      "remaining_count_fp": "10.00",
      "initial_count_fp": "10.00",
      "taker_fill_cost_dollars": "0.5600",
      "maker_fill_cost_dollars": "0.5600",
      "taker_fees_dollars": "0.5600",
      "maker_fees_dollars": "0.5600"
    }
  ]
}