Chilkat Online Tools

autoit / Binance delivery futures API / Index Price and Mark Price

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"

$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/dapi/v1/premiumIndex",$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"
https://domain.com/dapi/v1/premiumIndex

Postman Collection Item JSON

{
  "name": "Index Price and Mark Price",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{url}}/dapi/v1/premiumIndex",
      "host": [
        "{{url}}"
      ],
      "path": [
        "dapi",
        "v1",
        "premiumIndex"
      ],
      "query": [
        {
          "key": "symbol",
          "value": "",
          "disabled": true
        },
        {
          "key": "pair",
          "value": "",
          "disabled": true
        }
      ]
    }
  },
  "response": [
  ]
}