Maxbit API documentation
  1. Maxbit
Maxbit API documentation
  • Maxbit
    • Maxbit Orderbook websocket
    • Get User Balance
      GET
    • Get Deposit Address
      GET
    • Symbol Price Ticker
      GET
    • Get All Asset And Network
      GET
    • New Order
      POST
    • Query Order
      GET
    • Cancel Order
      PUT
    • Cancel all Open Orders on a Symbol
      PUT
    • All Orders
      GET
    • System Status
      GET
    • Account API Trading Status
      GET
    • Get Crypto Deposit History
      GET
    • Get Crypto Withdraw History
      GET
    • Get Fiat Transactions
      GET
    • Get User Banks
      GET
    • Fiat Withdrawal (Advanced)
      POST
    • Get Trading pair
      GET
    • Get Pair Settings
      GET
    • Trading Fee
      GET
  1. Maxbit

All Orders

GET
/api/v3/allOrders
DESCRIPTION
Retrieves all orders for a specific trading pair symbol, including open, pending, and historical orders.

Request

Query Params

Header Params

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://endpoint-gateway.maxbit.com/api/v3/allOrders?symbol=BTC_THB&orderId=31688&startTime=&endTime=&limit=500&recvWindow=&timestamp=1718855898528&signature={{signature}}' \
--header 'X-MBX-APIKEY: {{maxbit-api-key}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "symbol": "BTC_THB",
        "orderId": 28,
        "orderListId": -1,
        "clientOrderId": "6gCrw2kRUAF9CvJDGP16IP",
        "transactTime": 1507725176595,
        "price": "0.00000000",
        "origQty": "10.00000000",
        "executedQty": "10.00000000",
        "cummulativeQuoteQty": "10.00000000",
        "status": "FILLED",
        "timeInForce": "GTC",
        "type": "MARKET",
        "side": "SELL",
        "strategyId": 1,
        "strategyType": 1000000,
        "workingTime": 1507725176595,
        "selfTradePreventionMode": "NONE",
        "fills": [
            {
                "transactionDate": 1507725176595,
                "price": "4000.00000000",
                "qty": "1.00000000",
                "commission": "4.00000000",
                "commissionAsset": "USDT",
                "total": "100.00000000"
            }
        ]
    }
]
Modified at 2024-08-09 11:12:10
Previous
Cancel all Open Orders on a Symbol
Next
System Status
Built with