One Trading API
REST APIWebSocket API
REST APIWebSocket API
  1. Trading
  • Public
    • Currencies
      GET
    • Instruments
      GET
    • Candlesticks
      GET
    • Fee Groups
      GET
    • Order Book
      GET
    • Market Ticker
      GET
    • Market Ticker For Instrument
      GET
    • Time
      GET
  • Trading
    • Balances
      GET
    • Fees
      GET
    • Get Orders
      GET
    • Create Order
      POST
    • Get Order by Order ID
      GET
    • Get Order by Client ID
      GET
    • Cancel All Orders
      DELETE
    • Cancel Order by Order ID
      DELETE
    • Cancel Order by Client ID
      DELETE
    • Get Trades for Order
      GET
    • Get Trades
      GET
    • Get Trade by Trade ID
      GET
  • Futures
    • Introduction
    • Funding Rate Methodology
    • Funding Payments
      GET
    • Current Funding Rate
      GET
    • Funding Rate History
      GET
    • Futures Portfolio Summary
      GET
    • Get Futures Open Positions
      GET
  1. Trading

Get Orders

GET
https://api.onetrading.com/fast/v1/account/orders
Returns a paginated list of orders.
By default, if no params are provided, will return all open orders.
If with_cancelled_and_rejected and/or with_just_filled_inactive is set to true the default lookback is 1 day.
A from and a to date can be provided. The maximum window size is 30 days. If more than a 30 day window is provided, you will receive an 400 error.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.onetrading.com/fast/v1/account/orders?from=2025-02-13T16:00:00.000Z&to=2025-11-14T10:00:00.000Z&instrument_code=BTC_EUR&with_cancelled_and_rejected=false&with_just_filled_inactive=false&with_just_orders=true&max_page_size=5&cursor=1731488541876570'
Response Response Example
{
    "order_history": [
        {
            "order": {
                "account_id": "726288e6-a463-4f88-9068-024ae8f97a34",
                "order_id": "74eaf796-869b-4d49-ab39-2bc4fe10daeb",
                "client_id": "b8854ae6-4077-404b-ae0c-52a1fe318440",
                "amount": "1",
                "side": "SELL",
                "instrument_code": "SOL_EUR",
                "price": "140",
                "time": "2024-11-13T17:34:55.514Z",
                "sequence": "58894260661",
                "total_fee": "0.29",
                "fee_currency": "EUR",
                "time_last_updated": "2024-11-13T17:34:55.514Z",
                "order_book_sequence": "58894260661",
                "filled_amount": "1",
                "status": "FILLED_FULLY",
                "average_price": "145.00"
            },
            "trades": [
                {
                    "fee": {
                        "fee_amount": "0.29",
                        "fee_currency": "EUR"
                    },
                    "trade": {
                        "trade_id": "f99a7e64-5478-44f3-b404-19aac53f2062",
                        "order_id": "74eaf796-869b-4d49-ab39-2bc4fe10daeb",
                        "account_id": "726288e6-a463-4f88-9068-024ae8f97a34",
                        "amount": "1",
                        "side": "SELL",
                        "instrument_code": "SOL_EUR",
                        "price": "145",
                        "time": "2024-11-13T17:34:55.514Z",
                        "sequence": "58894260661",
                        "matched_as": "MAKER"
                    }
                }
            ]
        },
        {
            "order": {
                "account_id": "726288e6-a463-4f88-9068-024ae8f97a34",
                "order_id": "d8e8e090-a142-4574-a875-36ef769eafe3",
                "client_id": "89e6b540-2497-4d08-b777-9cf363940cab",
                "amount": "3.3333",
                "side": "BUY",
                "instrument_code": "SOL_EUR",
                "price": "150",
                "time": "2024-11-13T15:40:04.430Z",
                "sequence": "58894259835",
                "total_fee": "0.0067",
                "fee_currency": "SOL",
                "time_last_updated": "2024-11-13T15:40:04.430Z",
                "order_book_sequence": "58894259835",
                "filled_amount": "0",
                "status": "BOOKED"
            },
            "trades": []
        }
    ],
    "max_page_size": 2
}

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

Previous
Fees
Next
Create Order
Built with