Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
CkHttp_SetRequestHeader(http,"X-MBX-APIKEY","{{binance-api-key}}");
resp = CkHttp_QuickRequest(http,"POST","https://domain.com/dapi/v1/batchOrders?batchOrders=×tamp={{timestamp}}&signature={{signature}}");
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
}
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/dapi/v1/batchOrders?batchOrders=×tamp={{timestamp}}&signature={{signature}}
Postman Collection Item JSON
{
"name": "Place Multiple Orders (TRADE)",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-MBX-APIKEY",
"type": "text",
"value": "{{binance-api-key}}"
}
],
"url": {
"raw": "{{url}}/dapi/v1/batchOrders?batchOrders=×tamp={{timestamp}}&signature={{signature}}",
"host": [
"{{url}}"
],
"path": [
"dapi",
"v1",
"batchOrders"
],
"query": [
{
"key": "batchOrders",
"value": ""
},
{
"key": "recvWindow",
"value": "5000",
"description": "The value cannot be greater than 60000",
"disabled": true
},
{
"key": "timestamp",
"value": "{{timestamp}}"
},
{
"key": "signature",
"value": "{{signature}}",
"description": "Default BOTH for One-way Mode ;\nLONG or SHORT for Hedge Mode. It must be sent with Hedge Mode."
}
]
}
},
"response": [
]
}