Trade.mn API
About usContact us
  • API Doc
    • General API Information
    • API Key Setup
    • HTTP Return Codes
    • General Information on Endpoints
    • Endpoint security type
    • SIGNED (TRADE) Endpoint security
      • Timing security
    • Public API Endpoints
      • Terminology
      • ENUM definitions
      • General endpoints
      • Market Data endpoints
        • Order book (USER_DATA)
        • Recent trades list (USER_DATA)
      • Trading endpoints
        • New order (TRADE)
        • Cancel order (TRADE)
        • Current open orders (TRADE)
        • Trade history (TRADE)
      • Wallet endpoints
        • Wallet balance (WALLET)
        • Wallet balance by asset (WALLET)
    • Websocket (Socket.io)
    • Error Codes
    • Postman Collections
Powered by GitBook
On this page

Was this helpful?

  1. API Doc
  2. Public API Endpoints
  3. Trading endpoints

Current open orders (TRADE)

GET /api/v3/order/active

Get all open orders on a symbol. Careful when accessing this with no symbol. (Идэвхтэй захиалгын жагсаалт)

Parameters:

Name
Type
Mandatory
Description

symbol

STRING

NO

timestamp

LONG

YES

Response:

[
  {
    "id": "a3f906e5-37ae-44fb-8f04-7016ce1fea1d",
    "symbol": "TRD/MNT",
    "side": "SELL",
    "price": "10",
    "qty": "100",
    "execQty": "0",
    "total": "1000",
    "createdAt": "2006-01-02T17:23:40.583463+08:00"
  },
];
PreviousCancel order (TRADE)NextTrade history (TRADE)

Last updated 1 year ago

Was this helpful?