List orders
Exchange
List orders
Returns your account’s orders with optional market, status, and pagination filters. Use this endpoint for dashboards, backfills, and reconciliation jobs.
GET
List orders
Documentation Index
Fetch the complete documentation index at: https://stabyl.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API key. Send it in the X-Api-Key header.
Query Parameters
Optional order status filter. Supported values include pending, accepted, partially_filled, filled, cancelled, rejected, and expired.
Trading pair identifier returned by GET /partner/exchange/markets, for example USD/NGN.
Number of orders to return for this page.
Offset for paginated order list reads.
Response
Order list
Paginated collection of orders for the authenticated account.
Example:
{
"count": 1,
"orders": [
{
"avg_fill_price": "1649.50",
"client_order_id": "cli-123",
"created_at": "2026-01-14T10:30:00Z",
"filled_quantity": "50.00",
"id": "123e4567-e89b-12d3-a456-426614174000",
"order_type": "limit",
"pair_id": "USD/NGN",
"price": "1650.00",
"quantity": "100.00",
"replace": {
"replaced_by_order_id": null,
"replaces_order_id": null
},
"side": "buy",
"status": "accepted",
"time_in_force": "POST_ONLY"
}
]
}Available options:
success