List automated orders

This endpoint allows partners to search and list automated orders by filters such as a date interval, a specific User ID, Asset ID or Order Type.

Partners can navigate easily by using a specific Order ID as cursor and also use page_size parameter to choose the number of items to be displayed.

If no query parameter is specified, the endpoint will return the first 25 records from the database.

SecuritybearerAuth
Request
query Parameters
date_start
string

Start date for search in UTC timezone

Example: date_start=2024-06-01T00:00:00Z
date_end
string

End date for search in UTC timezone

Example: date_end=2024-06-30T23:59:59Z
type
string

Type

Enum: "buy" "sell"
Example: type=buy
user_id
string

Unique User Identifier

Example: user_id=abc2d123-a5db-4dd9-bd18-58a43c35b9ab
asset_id
string

Unique Asset Identifier

Example: asset_id=abc2d123-a5db-4dd9-bd18-58a43c35b9ab
cursor
string

Unique Cursor Identifier

Example: cursor=abc2d123-a5db-4dd9-bd18-58a43c35b9ab
page_size
integer

Number of elements to be displayed on a page

Example: page_size=10
Responses
200

List of orders

401

Error

405

Not Allowed

422

Validation Errors

500

Error

503

Maintenance or Service unavailable

get/v1/orders
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}