foxbille
foxbille

Reputation: 11

limited date for QUANDL API Requests

I'm working on a personnal PHP app, trying to fetch stock market prices for Euronext shares with quandl api using an HTTP request

But the request returns only data until 2021-06-01.

PHP :

file_get_contents("https://www.quandl.com/api/v3/datasets/EURONEXT/ELIOR/data.json?start_date=2020-11-23&end_date=2023-05-14&api_key=[my_api_key]");
$parsed_json = json_decode($r);

But this request returns only data until 2021-06-01.

I'm afraid this API has been deprecated by quandl/nasdaq, is this the explanation? If so, is there other API able to bring the same service?

Upvotes: 1

Views: 84

Answers (0)

Related Questions