Yahoo Finance Chart

Unofficial stock OHLCV chart JSON

📈 FinanceUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

Yahoo Finance chart endpoint returns candlestick and quote metadata as JSON. Unofficial and rate-limited — cache aggressively; not affiliated with Yahoo.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
GET https://query1.finance.yahoo.com/v8/finance/chart/AAPL?interval=1d&range=1d

{
  "chart": {
    "result": [
      {
        "meta": {
          "currency": "USD",
          "symbol": "AAPL",
          "exchangeName": "NMS",
          "fullExchangeName": "NasdaqGS",
          "instrumentType": "EQUITY",
          "firstTradeDate": 345479400,
          "regularMarketTime": 1783022401,
          "hasPrePostMarketData": true
        },
        "timestamp": [
          1782999000
        ],
        "indicators": {
          "quote": [
            {
              "volume": [
                75352800
              ],
              "low": [
                293.67999267578125
              ],
              "close": [
                308.6300048828125
              ],
              "open": [
                294.1199951171875
              ],
              "high": [
                309.4200134277344
              ]
            }
          ],
          "adjclose": [
            {
              "adjclose": [
                308.6300048828125
              ]
            }
          ]
        }
      }
    ],
    "error": null
  }
}
Call itcurl · fetch · python
curl "https://query1.finance.yahoo.com/v8/finance/chart/AAPL?interval=1d&range=1d"
const res = await fetch("https://query1.finance.yahoo.com/v8/finance/chart/AAPL?interval=1d&range=1d");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://query1.finance.yahoo.com/v8/finance/chart/AAPL?interval=1d&range=1d")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /chart/AAPL?interval=1d&range=1d awaits first probe
GET/chart/AAPL?interval=1d&range=1dPROBED

Unofficial stock OHLCV chart JSON

GET/chart

Chart or leaderboard data.

GET/chart/1

Chart details by ID (example: 1).

GET/chart?limit=10

Chart or leaderboard data.

GET/chart/search?q=test

Search by query parameters.

GET/chart/AAPL?limit=5

Chart or leaderboard data.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

Yahoo Finance Chart: common questions

Is Yahoo Finance Chart free to use?

Yes — Yahoo Finance Chart is a free finance API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Yahoo Finance Chart need an API key?

No — Yahoo Finance Chart needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call Yahoo Finance Chart from the browser?

Not directly — Yahoo Finance Chart doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is Yahoo Finance Chart up right now?

Yahoo Finance Chart is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.