Chilkat Online Tools

phpExt / Broker API / Asset by Symbol

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

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

$http = new CkHttp();

$http->put_BasicAuth(true);
$http->put_Login('{{api_key}}');
$http->put_Password('{{api_secret}}');

$sbResponseBody = new CkStringBuilder();
$success = $http->QuickGetSb('https://domain.com/v1/assets/:symbol',$sbResponseBody);
if ($success == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

print 'Response status code = ' . $http->get_LastStatus() . "\n";
print $sbResponseBody->getAsString() . "\n";

?>

Curl Command

curl -X GET
	-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/assets/:symbol

Postman Collection Item JSON

{
  "name": "Asset by Symbol",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{HOST}}/v1/assets/:symbol",
      "host": [
        "{{HOST}}"
      ],
      "path": [
        "v1",
        "assets",
        ":symbol"
      ],
      "variable": [
        {
          "key": "symbol",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}