LINE Yahoo Data Parser & API
LINE Yahoo (LY Corporation) operates Yahoo! Finance Japan, the leading retail finance and market-data portal for Japanese investors, and StockAPIS extracts its data — JP stock quotes, Nikkei 225 and TOPIX index levels, FX rates, fund NAVs and finance headlines — through a single REST API. LINE Yahoo does not publish a public market-data API, so StockAPIS parses the portal directly and normalizes the output to the same schema you use for every other source, letting you query Japanese retail market data alongside global brokers without a separate integration.
| Type | Retail finance portal & data service |
|---|---|
| HQ | Japan (Tokyo) |
| Owner | LY Corporation (SoftBank / Naver joint venture) |
| Asset classes | JP equities, Indices, FX, Mutual funds, Crypto |
| Coverage | Tokyo Stock Exchange listings, Nikkei 225, TOPIX, major FX pairs |
| Scale | Top retail finance portal in Japan (Yahoo! Finance Japan) |
| API access | Unofficial API only |
| Parse priority | ★★★☆☆ |
| Official site | finance.yahoo.co.jp |
Platform Overview
Market Position
- Yahoo! Finance Japan is the most-used retail finance portal in Japan, owned by LY Corporation (the LINE + Yahoo Japan entity backed by SoftBank and Naver)
- Primary destination for Japanese retail investors checking quotes, charts, fundamentals and market news
- Covers Tokyo Stock Exchange listings plus the Nikkei 225 and TOPIX benchmark indices
- No official public data API — StockAPIS provides programmatic access through normalized parsing
Data Coverage
StockAPIS exposes the LINE Yahoo / Yahoo! Finance Japan market surface:
- Equity quotes — last price, daily change, percent change, volume and market cap for TSE-listed stocks
- Fundamentals — PER (P/E), PBR (P/B), dividend yield and basic per-share metrics
- Indices — Nikkei 225, TOPIX and sector index levels in real time
- FX & rates — major JPY currency pairs and reference rates
- Funds — mutual fund NAVs and basic fund attributes
- News & headlines — finance news headlines and per-symbol story feeds in Japanese
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Quote for a Tokyo-listed stock (e.g. Toyota, code 7203)
quote = client.line_yahoo.get_quote(symbol="7203.T")
print(f"{quote['symbol']}: ¥{quote['lastPrice']} · {quote['changePercent']}%")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Latest finance headlines for a symbol
const news = await client.line_yahoo.getHeadlines({ symbol: "7203.T" });
console.log(news.headlines[0].title);Sample API Response
{
"success": true,
"data": {
"symbol": "7203.T",
"name": "Toyota Motor Corp.",
"lastPrice": 2845.5,
"change": 31.0,
"changePercent": 1.10,
"volume": 18452300,
"marketCap": 46380000000000,
"per": 9.8,
"pbr": 1.05,
"dividendYield": 2.84,
"currency": "JPY",
"headlines": [
{ "title": "トヨタ、通期見通しを上方修正", "published": "2026-01-14T23:05:00+09:00" }
]
},
"metadata": { "source": "line-yahoo", "timestamp": "2026-01-15T08:30:00+09:00" }
}Use Cases
- Japanese retail coverage — pull quotes, fundamentals and news for TSE-listed names alongside your global watchlist
- Index tracking — monitor Nikkei 225 and TOPIX levels for Japan-focused dashboards and alerts
- Sentiment & news feeds — surface Japanese-language finance headlines per symbol for research and NLP
- Cross-market comparison — align Yahoo! Finance Japan data with brokers and exchanges on one unified schema
Frequently Asked Questions
Does LINE Yahoo have an official market-data API? No — LINE Yahoo / Yahoo! Finance Japan does not offer a public market-data API. StockAPIS parses the portal and normalizes the output so you can access it programmatically through one REST endpoint.
What data can I get from LINE Yahoo through StockAPIS? Japanese equity quotes (last price, change, volume, market cap), fundamentals like PER, PBR and dividend yield, Nikkei 225 and TOPIX index levels, FX rates, fund NAVs and finance news headlines.
Is the data real time? StockAPIS delivers the latest values the portal publishes; quote freshness follows Yahoo! Finance Japan’s own update cadence, which is near-real-time for actively traded TSE names.