Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
loHttp.SetRequestHeader("Content-Type","application/json")
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/fapi/v1/fundingRate",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-H "Content-Type: application/json"
https://domain.com/fapi/v1/fundingRate
Postman Collection Item JSON
{
"name": "Get Funding Rate History",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/fapi/v1/fundingRate",
"host": [
"{{url}}"
],
"path": [
"fapi",
"v1",
"fundingRate"
],
"query": [
{
"key": "symbol",
"value": "BTCUSDT",
"disabled": true
},
{
"key": "startTime",
"value": null,
"disabled": true
},
{
"key": "endTime",
"value": null,
"disabled": true
},
{
"key": "limit",
"value": "100",
"disabled": true
}
]
},
"description": "Mark Price and Funding Rate\n\nWeight: 1"
},
"response": [
]
}