Yahoo Finance Chart
Unofficial stock OHLCV chart JSON
Yahoo Finance chart endpoint returns candlestick and quote metadata as JSON. Unofficial and rate-limited — cache aggressively; not affiliated with Yahoo.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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
}
}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
/chart/AAPL?interval=1d&range=1dPROBEDUnofficial stock OHLCV chart JSON
/chartChart or leaderboard data.
/chart/1Chart details by ID (example: 1).
/chart?limit=10Chart or leaderboard data.
/chart/search?q=testSearch by query parameters.
/chart/AAPL?limit=5Chart or leaderboard data.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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.