Yahoo Finance Chart

Unofficial stock OHLCV chart JSON

📈 FinanceHEALTHYchecked 8h ago
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.

99HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 99 · healthy
Uptime history
100%90 days
100%30 days
167P50 · ms
407P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 80 ms, slowest 270 ms, most recent 163 ms.
Live response samplecaptured by our last successful check
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 · 6HealthyFULL DOCS ↗
Monitored path responding — GET /chart/AAPL?interval=1d&range=1d167 mschecked 8h ago
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

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

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?

As of our last scheduled check, Yahoo Finance Chart is healthy with 100% uptime over 90 days and a 167 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.