Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the query limit on Yahoo's Finance API?

What is the query limit for Yahoo's Finance API? Or where is the documentation that describes the limit?

For all of Yahoo's API's I've only been able to find general documentation for all API's. If you know where the documentation is for Yahoo's Finance API that'd also be appreciated. (I've been searching for a few days on Google, and on Yahoo's API sites, finally turned to friends at SO)

Thanks!

like image 559
Don P Avatar asked Feb 19 '12 04:02

Don P


People also ask

Does Yahoo Finance have a limit?

Their usage limits are as follows: Unauthenticated: up to 1,000 calls/day. Authenticated: up to 100,000 calls/day.

Does Yahoo Finance have free API?

The Yahoo Finance API is a RESTful API that provides access to financial data. This data includes stock quotes, historical prices, and company information. The API is free to use and does not require an API key.

Is Yahoo financial API reliable?

The free Yahoo Finance API has long been a reliable data source for many investors.

When was Yahoo Finance API discontinued?

A: Yahoo Finance API was removed in 2017 following potential cost cutting by the Yahoo team.


2 Answers

UPDATE:

Rate limits in YQL are based on your authentication. If you use IP-based authentication, then you are limited to 2,000 calls/hour/IP to the public YQL Web service URL (/v1/public/) or 20,000 calls/hour/IP to the private YQL Web service URL (/v1/yql/) that requires OAuth authorization. See the YQL Web Service URLs for the public and private URLs. Applications (identified by an Access Key) are limited to 100,000 calls/day/key*.

However, in order to make sure the service is available for everyone we ask that you don't call YQL more than 0.2 times/second or 1,000 times/hour for IP authenticated users and 2.7 times/second or 10,000 times/hour.

like image 92
Raphael C Avatar answered Sep 21 '22 05:09

Raphael C


See the Yahoo Query Language Usage Information and Limits page. This is for all of the YQL APIs, not just the Finance API.

YQL Rate Limits:

YQL Rate Limits

What this means:

  • Using the Public API (without authentication), you are limited to 2,000 requests per hour per IP (or up to a total of 48,000 requests a day).
  • Using the Private API (with OAuth authentication using an API Key), you are limited to 20,000 requests per hour per IP and you are limited to 100,000 requests per day per API Key.

The above answer was originally posted here by me.

like image 42
Kody Avatar answered Sep 19 '22 05:09

Kody