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/pmExchangeInfo",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/pmExchangeInfo
Postman Collection Item JSON
{
"name": "Portfolio Margin Exchange Information",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/fapi/v1/pmExchangeInfo",
"host": [
"{{url}}"
],
"path": [
"fapi",
"v1",
"pmExchangeInfo"
],
"query": [
{
"key": "symbol",
"disabled": true
}
]
}
},
"response": [
]
}