Chilkat Online Tools

autoit / Binance spot API / Get BLVT Info (MARKET_DATA)

Back to Collection Items

; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.SetRequestHeader "Content-Type","application/json"
$oHttp.SetRequestHeader "X-MBX-APIKEY","{{binance-api-key}}"

$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/sapi/v1/blvt/tokenInfo",$oSbResponseBody)
If ($bSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Response status code = " & $oHttp.LastStatus & @CRLF)
ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)

Curl Command

curl -X GET
	-H "Content-Type: application/json"
	-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/sapi/v1/blvt/tokenInfo

Postman Collection Item JSON

{
  "name": "Get BLVT Info (MARKET_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}}/sapi/v1/blvt/tokenInfo",
      "host": [
        "{{url}}"
      ],
      "path": [
        "sapi",
        "v1",
        "blvt",
        "tokenInfo"
      ],
      "query": [
        {
          "key": "tokenName",
          "value": "",
          "description": "BTCDOWN, BTCUP",
          "disabled": true
        }
      ]
    },
    "description": "Weight(IP): 1"
  },
  "response": [
  ]
}