Skip to main content
GET
/
investments
/
orders
Get all orders
curl --request GET \
  --url https://{host}/investments/orders \
  --header 'Authorization: Bearer <token>' \
  --header 'x-user-id: <x-user-id>'
{
  "orders": [
    {
      "id": "64f5b3137fb3fc001234abce",
      "isin": "US0378331005",
      "side": "Buy",
      "status": "Settled",
      "quantity": 1.5,
      "settlementCurrency": "EUR",
      "consideration": {
        "currency": "EUR",
        "amount": 2550,
        "originalAmount": 2550
      },
      "fees": {
        "fx": {
          "currency": "EUR",
          "amount": 0
        },
        "commission": {
          "currency": "EUR",
          "amount": 0.25
        }
      },
      "createdAt": "2024-07-12T10:30:00Z",
      "filledAt": "2024-07-12T15:45:00Z",
      "unitPrice": {
        "currency": "EUR",
        "amount": 17
      }
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

Auth0-issued access token that includes the scopes listed for the endpoint.

Headers

x-user-id
string
required

User identifier for the M2M client to specify which user's data to access.

Query Parameters

status
enum<string>

Filter orders by status

Available options:
Pending,
Matched,
Rejected,
Settled,
Cancelled
side
enum<string>

Filter orders by side (buy or sell)

Available options:
Buy,
Sell
limit
integer
default:50

Maximum number of orders to return

Required range: x <= 100
offset
integer
default:0

Number of orders to skip for pagination

Response

List of orders retrieved successfully

orders
object[]
total
integer

Total number of orders matching the query