Get benchmark for a company


require('vendor/autoload.php');
use Emis\Http\Client;
use Emis\Company\Api\Proxy\Benchmark;
use Emis\Company\Api\Proxy\Dictionary;

$client = new Client();
$client->setApi(Client::COMPANY_API);
$client->setToken("YOUR_TOKEN");

$bm = new Benchmark($client);

//Benchmark for company with isic = 1441213
$result = $bm->getCompanyBenchmark("1441213");

var_export($result);