lianja / Broker API / Market Calendar
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.BasicAuth = .T.
loHttp.Login = "{{api_key}}"
loHttp.Password = "{{api_secret}}"
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/v1/calendar",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
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/calendar
Postman Collection Item JSON
{
"name": "Market Calendar",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/calendar",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"calendar"
]
}
},
"response": [
]
}