lianja / 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.
loHttp = createobject("CkHttp")
loHttp.SetRequestHeader("Content-Type","application/json")
loHttp.SetRequestHeader("X-MBX-APIKEY","{{binance-api-key}}")
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/sapi/v1/blvt/tokenInfo",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
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": [
]
}