Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject queryParams;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
queryParams = CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,"exchange","ERSX");
CkHttp_SetRequestHeader(http,"Apca-Api-Secret-Key","{{APCA_API_SECRET_KEY}}");
CkHttp_SetRequestHeader(http,"Apca-Api-Key-Id","{{APCA_API_KEY_ID}}");
resp = CkHttp_QuickRequestParams(http,"GET","https://{{HOST}}/v1beta1/crypto/:symbol/trades/latest",queryParams);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
}
Curl Command
curl -G -d "exchange=ERSX"
-H "Apca-Api-Key-Id: {{APCA_API_KEY_ID}}"
-H "Apca-Api-Secret-Key: {{APCA_API_SECRET_KEY}}"
https://{{HOST}}/v1beta1/crypto/:symbol/trades/latest
Postman Collection Item JSON
{
"name": "Latest Trade",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "GET",
"header": [
{
"key": "Apca-Api-Key-Id",
"value": "{{APCA_API_KEY_ID}}",
"type": "text"
},
{
"key": "Apca-Api-Secret-Key",
"value": "{{APCA_API_SECRET_KEY}}",
"type": "text"
}
],
"url": {
"raw": "https://{{HOST}}/v1beta1/crypto/:symbol/trades/latest?exchange=ERSX",
"protocol": "https",
"host": [
"{{HOST}}"
],
"path": [
"v1beta1",
"crypto",
":symbol",
"trades",
"latest"
],
"query": [
{
"key": "exchange",
"value": "ERSX",
"description": "One of the following exchanges: ERSX, GNSS, CBSE or FTX"
}
],
"variable": [
{
"key": "symbol",
"value": "BTCUSD",
"description": "The symbol to query for"
}
]
}
},
"response": [
]
}