Opened User Orders
Through this API, users can check their orders that are either not yet completed or not canceled.
GET /api/v1/openOrders/?symbol=string
GET /api/v1/openOrders/?symbol=string&page=number
Queries
symbol: string
A market symbol, which is a combination of a base ticker, a colon, and a quote ticker.
E.g.,
ETH_ETHSEPOLIA:USDT_ETHSEPOLIA
page?: number
The page number to retrieve, which should be greater than or equal to 1
Each page has 20 items
Examples
curl -X GET \
-H "Nectar-Api-Key: <apikey>" \
<nectar_url>/api/v1/openOrders/?symbol=ETH_ETH:USDT_ETH&page=1
Response
For more detailed information, please refer to the link below:
Last updated