autoit / Binance spot API / Get All Cross Margin Pairs (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.Http")
Local $bSuccess
$oHttp.SetRequestHeader "Content-Type","application/json"
$oHttp.SetRequestHeader "X-MBX-APIKEY","{{binance-api-key}}"
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://domain.com/sapi/v1/margin/allPairs",$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/margin/allPairs
Postman Collection Item JSON
{
"name": "Get All Cross Margin Pairs (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/margin/allPairs",
"host": [
"{{url}}"
],
"path": [
"sapi",
"v1",
"margin",
"allPairs"
]
},
"description": "Weight(IP): 1"
},
"response": [
]
}