Chilkat Online Tools

Perl / Alpaca Stocks Data / Meta Conditions

Back to Collection Items

use chilkat();

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

$http = chilkat::CkHttp->new();

$queryParams = chilkat::CkJsonObject->new();
$queryParams->UpdateString("tape","A");

$http->SetRequestHeader("Apca-Api-Secret-Key","{{APCA_API_SECRET_KEY}}");
$http->SetRequestHeader("Apca-Api-Key-Id","{{APCA_API_KEY_ID}}");

# resp is a HttpResponse
$resp = $http->QuickRequestParams("GET","https://{{HOST}}/v2/stocks/meta/conditions/:tickType",$queryParams);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\n";

Curl Command

curl -G -d "tape=A"
	-H "Apca-Api-Key-Id: {{APCA_API_KEY_ID}}"
	-H "Apca-Api-Secret-Key: {{APCA_API_SECRET_KEY}}"
https://{{HOST}}/v2/stocks/meta/conditions/:tickType

Postman Collection Item JSON

{
  "name": "Meta Conditions",
  "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}}/v2/stocks/meta/conditions/:tickType?tape=A",
      "protocol": "https",
      "host": [
        "{{HOST}}"
      ],
      "path": [
        "v2",
        "stocks",
        "meta",
        "conditions",
        ":tickType"
      ],
      "query": [
        {
          "key": "tape",
          "value": "A",
          "description": "A, B, or C"
        }
      ],
      "variable": [
        {
          "key": "tickType",
          "value": "trade",
          "description": "trade or quote"
        }
      ]
    }
  },
  "response": [
  ]
}