Skip to content

Orders

Endpoints for querying orders across all order types.

Operations

Get a cursor-paged list of orders that are not part of a transport request

Request

Retrieve a cursor-paged list of all orders across all order types that are not part of a transport request.

You can find out more about how to use cursors in our developer portal.

Security
clientCredentials
Query
cursorstring

Cursor of the page to retrieve. Can be left blank initially to retrieve the first page. Paging through the results requires passing in the cursor from a previous response.

limitinteger, (int32), [ 1 .. 1000 ]

Number of results per page.

Default:100
curl -i -X GET \
  'https://developer.conundra.eu/_mock/apis/order-book/order-book-api/orders?cursor=string&limit=100' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

A cursor-based paged set of orders. The set might be empty if no orders are present.

Bodyapplication/json
dataArray of objects(OrderSummary)required

Subset of orders matching the provided query, limited to the size specified in the request.

cursorobject(Cursor)required
Response
{ "data": [ {} ], "cursor": { "self": "c2VsZl9fcGFnZQ", "prev": "cHJldmlvdXNfX3BhZ2U", "next": "bmV4dF9fcGFnZQ" } }