Chilkat Online Tools

unicodeCpp / Binance european options API / Symbol Price Ticker

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"underlying",L"");

    http.SetRequestHeader(L"Content-Type",L"application/json");

    CkHttpResponseW *resp = http.QuickRequestParams(L"GET",L"https://domain.com/eapi/v1/index",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 "underlying="
	-H "Content-Type: application/json"
https://domain.com/eapi/v1/index

Postman Collection Item JSON

{
  "name": "Symbol Price Ticker",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/eapi/v1/index?underlying=",
      "host": [
        "{{url}}"
      ],
      "path": [
        "eapi",
        "v1",
        "index"
      ],
      "query": [
        {
          "key": "underlying",
          "value": "",
          "description": "Spot pair(Option contract underlying asset)"
        }
      ]
    },
    "description": "Get spot index price for option underlying."
  },
  "response": [
  ]
}