Compliant brokerage sync, portfolio export, and stock-data APIs for jp.co.yahoo.android.finance
The Yahoo!ファイナンス Android app (package jp.co.yahoo.android.finance) sits on top of one of Japan's deepest stock, ETF, FX, investment-trust, and shareholder-benefit databases, and — through Yahoo! Finance Connect — links directly to SBI Securities and other Japanese brokers to auto-build portfolios and transaction histories. We deliver authorized protocol analysis and ready-to-run API code so this data can flow into your accounting tools, robo-advisors, internal dashboards, and compliance pipelines.
Japan's open-banking and capital-markets data segment is projected to grow at roughly 27% CAGR through 2030, and the Yahoo!ファイナンス app — operated by LY Corporation — has become a hub for retail investors who want a single view across SBI Securities, Rakuten Securities, and Monex Securities. The 2021 launch of Yahoo!ファイナンスコネクト (Yahoo! Finance Connect) turned the app into a true aggregation surface: by linking a Yahoo! JAPAN ID to a brokerage account, holdings and trade history are pulled in automatically and rendered alongside watchlists and notes.
For B2B integrators this matters because it bundles three previously fragmented data flows — broker statements, market reference data, and user-curated watchlists — under one authorization surface. Combined with the 2025 milestone of Rakuten Securities passing 13 million general securities accounts and the Money Bridge service crossing 6 million linked Rakuten Bank/Securities accounts, the Japanese retail investor data layer is now large enough that aggregator apps, robo-advisors, neobanks, and tax-prep tools all benefit from a single normalized API.
Our role is to take the authorized client-side flows that the Yahoo!ファイナンス app already exposes to its users and re-shape them into stable, documented endpoints your engineering team can call.
Authenticate the user, replay the consent dance with the linked broker (currently SBI Securities and partner channels), and stream holdings, cash_balance, and trade_history records into your backend. Use case: build a unified P/L panel that reconciles across multiple Japanese brokers in one call.
CRUD endpoints for the up-to-50-symbol portfolios — registering Japanese stocks, US stocks, ETFs, FX pairs, investment trusts, and indices. Use case: copy a customer's existing Yahoo!ファイナンス watchlist into your robo-advisor onboarding so they don't restart from zero.
Pull intraday-through-all-time OHLC series, configurable moving averages, and the screener filter set (PER company forecast, PBR actual, dividend yield, market cap, shareholder benefits). Use case: feed a custom factor backtester or a Nikkei 225 dashboard.
Subscribe to threshold alerts on price/FX/index moves and to corporate-event notifications: timely-disclosure (適時開示), 5-business-day earnings reminders, and shareholder-benefit ex-dates. Use case: route real-time signals into Slack, internal CRM, or trading-desk OMS.
Query the fund universe by fee, dividend, trailing return, and the NAV ≥ ¥5 billion ranking pool. Use case: power a fund-comparison feature inside a fintech app or a fee-disclosure widget for advisor portals.
Optional ingest of public board posts per ticker for buy/sell sentiment aggregation, normalized into a tabular feed. Use case: a sentiment overlay on charts, or a narrative-risk filter for portfolio managers.
| Data type | Source (app feature) | Granularity | Typical integration use |
|---|---|---|---|
| Brokerage holdings | Yahoo! Finance Connect → 保有一覧 | Per-account, per-symbol, snapshot + history | Multi-broker P/L aggregation, NAV reporting |
| Trade history | Yahoo! Finance Connect → 取引履歴 | Per fill: date, symbol, side, qty, price, fee | Tax pack generation, capital-gain calculation, audit log |
| Watchlist / portfolio | ポートフォリオ tab | Up to 50 instruments per list, with notes & cost basis | Onboarding migration, cross-platform sync |
| Quote / OHLC chart | Stock detail screen | Intraday tick → multi-year daily, with MA / indicators | Backtesting, dashboards, model inputs |
| Screener results | Screening 機能 | Filter set: market, PER, PBR, yield, min-buy, market cap, signal, industry, benefit, FY | Factor strategies, idea generation |
| Investment-trust catalog | 投資信託 search & ranking | Fee, dividend, return, NAV ≥ ¥5B | Fund comparison, robo-advisor menu |
| Corporate event signals | Push notifications | Earnings T-5, shareholder-benefit ex-date, timely disclosure | Event-driven alerts, compliance reminders |
| FX & index references | 為替 / 指数 | Spot & historical, JPY crosses + global indices | FX-adjusted reporting, multi-currency NAV |
Context: a wealth-management firm onboarding retail clients who hold accounts at SBI Securities, Rakuten Securities, and Monex Securities. Data & APIs: Yahoo! Finance Connect /holdings and /trade_history endpoints, broker-side OAuth re-authorization. OpenFinance mapping: equivalent to a regulated AISP "account information" call — we package the consent record, audit trail, and refresh logic so the firm can rebuild a unified position book nightly.
Context: a Japanese tax-prep SaaS needs annual realized-gain data per user. Data & APIs: /trade_history?from=2025-01-01&to=2025-12-31 with paging, plus per-symbol cost-basis from the portfolio module. OpenFinance mapping: mirrors a "statement download" use case — output is JSON + Excel, ready for the e-Tax filing flow and reconciled against broker-issued tokutei kouza (特定口座) summaries.
Context: a trading desk wants Yahoo!ファイナンス price alerts and timely-disclosure pings inside its OMS. Data & APIs: POST /alerts to register thresholds, plus a webhook receiver for disclosure events. OpenFinance mapping: equivalent to event-streaming patterns common in payment-initiation flows — we sign each webhook payload and provide replay endpoints for downtime catch-up.
Context: a new robo-advisor wants to bootstrap clients' watchlists from Yahoo!ファイナンス to reduce setup friction. Data & APIs: /portfolio?id=… to read existing 50-symbol lists with notes and cost basis, then map into the robo's instrument universe. OpenFinance mapping: consent-scoped read-only access; once migration completes, the consent token is revoked and a deletion log is filed.
Context: an FSA-supervised IFA monitoring suitability across client accounts. Data & APIs: /holdings + /screener (PER, PBR, yield) + corporate-event webhook to detect concentrated-position risk and material-event exposure. OpenFinance mapping: aligns with read-only "wealth aggregator" patterns that Japan's Financial Services Agency has been formalizing for electronic payment intermediary services.
POST /api/v1/yahoofinance-jp/auth/start
Content-Type: application/json
{
"yid_session": "<encrypted YJ session token>",
"broker": "sbi", // sbi | rakuten | monex (deeplink)
"scope": ["holdings","trade_history","alerts"]
}
200 OK
{
"consent_id": "cnst_8f2a91…",
"expires_at": "2026-07-28T09:15:00+09:00",
"refresh_token": "rtk_…",
"broker_link_status": "linked"
}
GET /api/v1/yahoofinance-jp/trade_history
?consent_id=cnst_8f2a91
&from=2025-01-01&to=2025-12-31
&page=1&page_size=200
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"items": [
{
"trade_id": "T-20251104-0001",
"symbol": "7203.T", // Toyota Motor
"side": "buy",
"qty": 100,
"price_jpy": 2845.5,
"fee_jpy": 99,
"executed_at": "2025-11-04T09:00:11+09:00",
"account_type": "tokutei" // 特定口座
}
],
"next_cursor": "eyJwYWdlIjoyfQ=="
}
POST https://your-domain/webhooks/yahoofinance-jp
X-Signature: sha256=…
Content-Type: application/json
{
"event": "price_alert.fired",
"alert_id": "al_9921",
"symbol": "9984.T", // SoftBank Group
"rule": { "op": ">=", "value": 12000 },
"fired_at": "2026-04-28T10:02:33+09:00",
"context": { "last": 12015, "change_pct": 1.42 }
}
// Reply 2xx within 5s; we retry with exponential backoff for 24h.
POST /api/v1/yahoofinance-jp/screener
{
"market": ["TSE_PRIME"],
"per_forecast": { "max": 12 },
"pbr_actual": { "max": 1.0 },
"dividend_yield_forecast": { "min": 3.5 },
"shareholder_benefit": true,
"min_buy_jpy": { "max": 200000 },
"order_by": "dividend_yield_forecast.desc",
"limit": 50
}
200 OK
{ "items": [ { "symbol":"8316.T","name":"SMFG","yield":4.6,"per":9.2 }, … ] }
All Yahoo!ファイナンス integrations are delivered under explicit user authorization or documented public endpoints. Three regulatory anchors shape every project:
For European-customer deployments we additionally align with GDPR (Art. 6 lawful basis, Art. 28 processor terms). Japan's Basel III rollout and METI's EMV 3-D Secure mandate (effective 2025-03-31) further inform our recommendations on payment-adjacent flows.
A typical deployment uses a four-stage pipeline:
Yahoo!ファイナンス is overwhelmingly a Japan-domestic, retail-investor app, with a long-tail user base spanning casual stock-watchers, NISA / iDeCo participants, active day-traders, and fund investors. Distribution is dominated by Android and iOS smartphones, supplemented by widget users on the home screen and the linked PC site. Integration buyers are typically Japanese fintechs, robo-advisors, IFAs, accounting SaaS, and overseas neobanks adding Japan coverage; B2B engagements skew toward read-only aggregation and reporting rather than order placement.
Click any thumbnail to enlarge.
Customers who integrate Yahoo!ファイナンス almost always touch one or more of the following apps. We treat each as part of the same Japanese investing data ecosystem rather than a competitor — and many of our engagements end up combining several of them into a single normalized API surface.
We are an independent technical service studio specializing in App interface integration and authorized API integration, with deep hands-on experience across Japanese and international fintech. Our engineers come from banks, brokerages, payment gateways, mobile-app reverse engineering, and cloud infrastructure backgrounds, which means we can move fluently from protocol analysis to OpenAPI specification to a hardened production deployment.
Ready to extract Yahoo!ファイナンス holdings, trade history, watchlists, or screener results into your stack? Send us the target app name and your concrete requirements, and we'll quote scope, timeline, and the right pricing model.
What do you need from me to start?
How is delivery handled?
How is consent and data retention managed?
Yahoo!ファイナンス (package jp.co.yahoo.android.finance) is a comprehensive Japanese stock and investment app operated by LY Corporation. It bundles brokerage account aggregation, portfolio management, real-time alerts, charts, screening, investment-trust search, news, and a community bulletin board. Highlights from the official description: