πŸ”’Get Open Orders

Get open orders by filters

GET http://api.staging.dexilon.io/api/v1/orders/open

Weight: 10

Query Parameters

Name
Type
Description

symbol

String

Symbol name

side

Enum

Type of side: BUY, SELL

page

Integer

Number of page

size

Integer

Number of returned orders

{
    "content" : [ {
        "symbol" : "near_usdt",
        "amount" : 133,
        "side" : "SELL",
        "notionalValue" : 699.29006,
        "orderId" : 430934031,
        "price" : 5.25782,
        "clientOrderId" : "1dc17102-2a57-424a-952b-44c18b849f21",
        "filled" : 63.25,
        "type" : "LIMIT",
        "placedAt" : 1670240315627
     }, {
        "symbol" : "near_usdt",
        "amount" : 124.4,
        "side" : "BUY",
        "notionalValue" : 680.83224,
        "orderId" : 430204050,
        "price" : 5.15782,
        "clientOrderId" : "v34mf001-2af3-024s-152c-4kfmg4849hfd45",
        "filled" : 100.9,
        "type" : "LIMIT",
        "placedAt" : 1670240315627
    },
    "totalElements" : 2
    "size" : 20,
    "totalPages" : 1,
}

Last updated