Orders

The Orders API provides access to all system trade orders (open, filled, rejected, etc.), supporting filtering by order status and user identity.

List All Orders

Returns a list of all orders.

Responses
200

List of all orders

get/orders
Response samples
application/json
{
  • "orders": [
    ]
}

List Open Orders

Returns only currently open (active) orders.

Responses
200

List of open orders

get/orders/open
Response samples
application/json
{
  • "orders": [
    ]
}

List Order History (Closed Orders)

Returns only completed (closed) orders.

Responses
200

List of closed orders

get/orders/history
Response samples
application/json
{
  • "orders": [
    ]
}

Get Order by ID

Returns detailed information about a specific order by its ID.

Request
path Parameters
id
required
string

ID of the order

Responses
200

Order details successfully retrieved

get/orders/{id}
Response samples
application/json
{
  • "api_data": {
    }
}

Get Quotes

Returns quote information for given trade parameters.

Request
Request Body schema: application/json
required
Array
side
string
spend_amount
string
spend_currency
string
spend_currency_id
string
receive_currency
string
receive_currency_id
string
Responses
200

Quotes successfully retrieved

post/orders/quotes
Request samples
application/json
[
  • {
    }
]
Response samples
application/json
{
  • "quotes": [
    ]
}