Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/barchart/barchart-ondemand-client-php

PHP client for Barchart OnDemand
https://github.com/barchart/barchart-ondemand-client-php

barchart-ondemand crypto cryptocurrencies forex free market-data php-client stocks stocks-api

Last synced: 2 months ago
JSON representation

PHP client for Barchart OnDemand

Awesome Lists containing this project

README

        

## PHP Client for Barchart OnDemand
Get access to Barchart's market data through Barchart OnDemand.

https://www.barchart.com/ondemand

### Installation
```
composer require barchart/ondemand-client
```

### Usage
```php
require_once 'vendor/autoload.php';

use Barchart\OnDemand\Client;

$ondemand = new Client('YOUR API KEY');
$results = $ondemand->getQuote(['symbols' => 'AAPL,AMZN']);

// Generic request
$results = $ondemand->makeRequest('getQuote', ['symbols' => 'AAPL,AMZN']);
```