Chilkat Online Tools

unicodeCpp / Binance spot API / All Orders (USER_DATA)

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;
    bool success;

    CkJsonObjectW queryParams;
    queryParams.UpdateString(L"symbol",L"BNBUSDT");
    queryParams.UpdateString(L"timestamp",L"{{timestamp}}");
    queryParams.UpdateString(L"signature",L"{{signature}}");

    http.SetRequestHeader(L"Content-Type",L"application/json");
    http.SetRequestHeader(L"X-MBX-APIKEY",L"{{binance-api-key}}");

    CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://domain.com/api/v3/allOrders",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -G -d "symbol=BNBUSDT"
	-d "timestamp=%7B%7Btimestamp%7D%7D"
	-d "signature=%7B%7Bsignature%7D%7D"
	-H "Content-Type: application/json"
	-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/api/v3/allOrders

Postman Collection Item JSON

{
  "name": "All Orders (USER_DATA)",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "X-MBX-APIKEY",
        "value": "{{binance-api-key}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/api/v3/allOrders?symbol=BNBUSDT&timestamp={{timestamp}}&signature={{signature}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "api",
        "v3",
        "allOrders"
      ],
      "query": [
        {
          "key": "symbol",
          "value": "BNBUSDT",
          "description": "Trading symbol, e.g. BNBUSDT"
        },
        {
          "key": "orderId",
          "value": "",
          "description": "Order id",
          "disabled": true
        },
        {
          "key": "startTime",
          "value": "",
          "description": "UTC timestamp in ms",
          "disabled": true
        },
        {
          "key": "endTime",
          "value": "",
          "description": "UTC timestamp in ms",
          "disabled": true
        },
        {
          "key": "limit",
          "value": "500",
          "description": "Default 500; max 1000.",
          "disabled": true
        },
        {
          "key": "recvWindow",
          "value": "5000",
          "description": "The value cannot be greater than 60000",
          "disabled": true
        },
        {
          "key": "timestamp",
          "value": "{{timestamp}}",
          "description": "UTC timestamp in ms"
        },
        {
          "key": "signature",
          "value": "{{signature}}",
          "description": "Signature"
        }
      ]
    },
    "description": "Get all account orders; active, canceled, or filled..\n\n- If `orderId` is set, it will get orders >= that `orderId`. Otherwise most recent orders are returned.\n- For some historical orders `cummulativeQuoteQty` will be < 0, meaning the data is not available at this time.\n- If `startTime` and/or `endTime` provided, `orderId` is not required\n\nWeight(IP): 10"
  },
  "response": [
  ]
}