GET
/
v1
/
algo
/
orders
curl --request GET \
  --url https://api-evm.orderly.network/v1/algo/orders \
  --header 'orderly-account-id: <orderly-account-id>' \
  --header 'orderly-key: <orderly-key>' \
  --header 'orderly-signature: <orderly-signature>' \
  --header 'orderly-timestamp: <orderly-timestamp>'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "meta": {
      "total": 9,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "algo_order_id": 168400010,
        "algo_status": "NEW",
        "algo_type": "STOP",
        "fee_asset": "USDC",
        "is_triggered": "false",
        "order_tag": "test_tag",
        "parent_algo_order_id": 123,
        "quantity": 5.5,
        "root_algo_order_id": 168400010,
        "root_algo_order_status": "NEW",
        "side": "BUY",
        "symbol": "PERP_NEAR_USDC",
        "executed_quantity": 123,
        "total_executed_quantity": 123,
        "total_fee": 123,
        "trigger_price": 2.5,
        "trigger_price_type": "MARK_PRICE",
        "type": "MARKET",
        "created_time": 1702871974317,
        "updated_time": 1702871974317,
        "visible_quantity": 5.5,
        "realized_pnl": 123,
        "child_orders": [
          {}
        ]
      }
    ]
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Query Parameters

symbol
string
order_type
string

LIMIT/MARKET

status
string

NEW/CANCELLED/PARTIAL_FILLED/FILLED/REJECTED/INCOMPLETE/COMPLETED

order_tag
string
start_t
number

start time range that wish to query, noted the time stamp is 13-digits timestamp.

end_t
number

end time range that wish to query, noted the time stamp is 13-digits timestamp.

page
number

the page you wish to query.

size
number

the page size you wish to query (max: 500)

side
string

BUY/SELL

algo_type
string

Supported types are STOP, TPSL, positional_TPSL

is_triggered
string

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required