C++ / Binance spot API / Get All Cross Margin Pairs (MARKET_DATA)
Back to Collection Items
#include <CkHttp.h>
#include <CkStringBuilder.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("X-MBX-APIKEY","{{binance-api-key}}");
CkStringBuilder sbResponseBody;
success = http.QuickGetSb("https://domain.com/sapi/v1/margin/allPairs",sbResponseBody);
if (success == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << "Response status code = " << http.get_LastStatus() << "\r\n";
std::cout << sbResponseBody.getAsString() << "\r\n";
}
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": [
]
}