v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Stop Orders

Get Stop Orders

Gets a list of all stop orders for all markets. This section covers Position-Level stop orders only (take-profit and stop-loss attached to open positions). For TP/SL attached to limit orders, see the order creation payload (takeProfit, stopLoss, etc.). For how stop orders work, see Take profit and stop loss.

get/v1/perps/stop_order

Response

List of stop orders across all markets and position directions

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": [
    {
      "market": "AAPL-USD.P",
      "positionDirection": "long",
      "stopLoss": "8.00",
      "takeProfit": "9.00"
    }
  ]
}