GET /orders
Request
GET /api/v1/orders?exchange={exchange}&symbol={symbol}Parameters
Parameter
Type
Required
Description
Response
{
"exchange": "mexc",
"orders": [
{
"id": "123456",
"symbol": "BTC/USDT",
"side": "buy",
"type": "limit",
"price": 40000,
"amount": 0.1,
"filled": 0,
"remaining": 0.1,
"status": "open",
"timestamp": 1710000000000
}
],
"count": 1
}Examples
Last updated