存股價值K線 API integration & Taiwan OpenData services

Protocol analysis, watchlist export and fundamental-score APIs for Taiwan equity teams, family offices and quant desks

From $300 · Pay-per-call available
OpenData · OpenFinance · Protocol analysis · Taiwan equities

Bring 存股價值K線 watchlists, valuations and screener results into your own stack

存股價值K線 (Value K-Line) is CMoney's value-investing app for Taiwanese equities, built around five core jobs: stock picking, valuation, company physique, mine-sweeping and watchlists. Underneath that mobile UI sits a structured stream of fundamental scores, screener cohorts and per-user lists. We turn that stream into clean APIs and exports so your quant pipeline, BI dashboard or accounting system can consume it without scraping screens.

Why does this data matter? CMoney's group serves more than 6.5 million Taiwan investors and ships more than a dozen K-Line apps; Value K-Line's "physique" and "mine-sweeping" outputs are decision signals that subscribers already pay for. Pulling them server-side lets you reproduce the user's view in a back office, alerting tool or research notebook with consistent, time-stamped fields.

Watchlist export APIs — Pull a user's selected-stocks list keyed by TWSE ticker, with current price, valuation tier and physique grade attached on every fetch.
Fundamental score endpoints — Per-ticker valuation (cheap / fair / expensive), physique health-check and mine-sweeping risk flags, all surfaced as numeric scores plus reason codes.
Screener strategy APIs — Trigger any of the 10+ built-in strategies across the value, performance and growth axes; receive the resulting ticker cohort with the metric that justified inclusion.
TWSE / TPEx OpenData fusion — Combine app outputs with the official TWSE OpenAPI and TPEx OpenAPI feeds for daily prices, dividends and corporate actions in one normalized warehouse.

What we deliver

Deliverables checklist

  • OpenAPI / Swagger specification for every wrapped endpoint
  • Protocol and auth-flow report (CMoney login, token rotation, request signing)
  • Runnable Python and Node.js source for watchlist sync and screener pulls
  • Automated test suite (pytest / vitest) and Postman collection
  • Compliance pack covering Taiwan PDPA scope, retention windows and consent records
  • Operational runbook for token refresh, rate-limit handling and CMoney-side schema changes

Data available for integration

Data typeSource screen / featureGranularityTypical use
Watchlist (Optional Stocks)自選股 listPer user, real-timePortfolio mirroring, alerting, family-office reporting
Valuation tierEvaluation (估價)Per ticker, dailyBuy / hold / avoid signals; back-office price-discipline checks
Company physique scorePhysique (體質)Per ticker, dailyCredit-style health screening for equity sleeves
Mine-sweeping flagsMine Sweeping (排雷)Per ticker, event-drivenRisk-control, exclusion lists, ESG-style filters
Screener strategy resultsStock Picking (選股)Per strategy, dailyIdea generation, factor research, automated rebalancing
Discussion threads metadataDiscussion (討論)Per ticker, per postSentiment overlays, retail-flow context
Subscription & entitlementPro tier (月訂閱)Per userInternal license tracking for redistributed signals

Technical implementation

Each wrapped capability is delivered as an HTTPS endpoint with OAuth2-style bearer tokens, exponential-backoff retry, and a JSON schema that matches our OpenAPI spec. Three representative samples below.

// 1. Login + token bind (server-side proxy of CMoney auth)
POST /api/v1/valuek/auth/login
Content-Type: application/json

{
  "device_id": "<uuid>",
  "credential_ref": "<encrypted_user_credential_handle>"
}

200 OK
{
  "access_token": "<jwt>",
  "refresh_token": "<opaque>",
  "expires_in": 3600,
  "subscription_tier": "pro"
}
// 2. Pull watchlist enriched with valuation + physique
GET /api/v1/valuek/watchlist?user_ref=u_8821
Authorization: Bearer <ACCESS_TOKEN>

200 OK
{
  "as_of": "2026-04-30T08:00:00+08:00",
  "items": [
    {
      "ticker": "2330",
      "name": "TSMC",
      "last_price": 1085.0,
      "valuation_tier": "fair",
      "physique_grade": "A",
      "mine_flags": []
    },
    {
      "ticker": "2412",
      "name": "Chunghwa Telecom",
      "last_price": 124.5,
      "valuation_tier": "cheap",
      "physique_grade": "A",
      "mine_flags": []
    }
  ]
}
// 3. Run a fundamental screener and receive a cohort
POST /api/v1/valuek/screener/run
Authorization: Bearer <ACCESS_TOKEN>
Content-Type: application/json

{
  "strategy": "growth_with_value",
  "filters": {
    "min_roe_3y": 12,
    "max_pe": 18,
    "exclude_mine_flags": true
  }
}

200 OK
{
  "strategy": "growth_with_value",
  "generated_at": "2026-04-30T08:05:11+08:00",
  "matched": [
    {"ticker": "2454", "trigger": "roe_3y=21,pe=14"},
    {"ticker": "1216", "trigger": "roe_3y=15,pe=12"}
  ]
}

# Errors: 401 invalid_token, 429 rate_limited (5 req/s),
# 503 upstream_unavailable (retry with jitter)

Typical integration scenarios

The five flows below are derived from real engagement patterns — boutique asset managers, fintech research desks and family offices that already use Value K-Line as a personal tool and want it as a programmable signal source.

  1. Family-office watchlist mirroring. Wealth advisor logs into Value K-Line; our connector exports the optional-stocks list nightly into the firm's portfolio system, alongside the per-ticker valuation tier. Field flow: watchlist.items[].ticker → portfolio.positions, valuation_tier → review queue.
  2. Fundamental factor model overlay. A quant team backtests Value K-Line's physique grade as a quality factor against TWSE returns. We deliver a daily snapshot table of (date, ticker, physique_grade, mine_flags) joined to TWSE OpenAPI close prices.
  3. Robo-advisor risk gate. Before any auto-rebalance, the engine calls /screener/run with the user's risk profile and excludes any ticker whose mine_flags are non-empty. This maps cleanly to OpenFinance suitability and product-governance requirements.
  4. Compliance archiving for sell-side recommendations. When an analyst publishes a recommendation, we snapshot the matching Value K-Line valuation tier and physique grade as supporting evidence, retained for the audit window required by Taiwan's FSC.
  5. Cross-app unified dashboard. A retail brokerage merges Value K-Line fundamental scores with 籌碼K線 institutional flows and TPEx daily quotes, exposing one OpenFinance-style endpoint to its mobile client. This is exactly the integration shape PSD2-inspired Open Banking applies to bank accounts, transposed to equity research data.

Compliance & privacy

Taiwan's Financial Supervisory Commission regulates the securities market and enforces the Personal Data Protection Act (PDPA). The FSC's 2013 "Regulations Governing Maintenance of Personal Information Files by the Non-government Institutions as Designated by the FSC" require security-incident response, employee training and consent collection for information sharing — and Article 21 of the PDPA empowers the FSC to restrict cross-border transfers.

Our delivery follows that envelope: explicit user authorization captured per data subject, minimum-necessary fields, encryption at rest and in transit, and consent-revocation hooks so a user can purge their watchlist mirror in a single API call. Where the integration touches authoritative market data, we route through the official TWSE / TPEx OpenAPI rather than scraping the consumer app.

Typical modules we wrap

  • Login and CMoney token rotation
  • Watchlist (自選股) read / write
  • Valuation, physique and mine-sweeping endpoints
  • Screener strategies across value, performance, growth
  • Discussion-thread metadata per ticker
  • TWSE / TPEx daily quote and corporate-action ingestion
  • Subscription / entitlement check for Pro features

Data flow & architecture

Pipelines are deliberately boring: four nodes, idempotent stages, and a single audit log. The flow keeps mobile-app state and exchange OpenData on separate ingestion paths until they are joined in storage, so a CMoney schema change cannot corrupt your TWSE cache.

Value K-Line client
Auth + ingestion API
Normalized warehouse (Postgres / Parquet)
OpenFinance endpoint or BI / quant consumer

Side feeds: TWSE OpenAPI and TPEx OpenAPI run on a parallel branch with their own rate-limit budget (TWSE caps roughly three requests per five seconds for the public daily endpoint), and join into the warehouse on (trade_date, ticker).

Market positioning & user profile

Value K-Line is squarely a Taiwan-focused, retail-first, fundamental-investing app — its iOS/Android footprint sits inside CMoney's broader 理財寶 ("Money-Wise") ecosystem, and version cadence is steady (v1.37.1 in mid-2024 refreshed broker-report data sources, v1.37.4 landed in early 2025). The user base skews towards long-term dividend-oriented Taiwanese investors who want a one-minute fundamental read rather than active day-trading tooling. For B2B integrators that means the highest-leverage scenarios are wealth-management mirroring, retail-brokerage research overlays, and quant teams running Taiwan-equity factor research against PII-light scores.

Screenshots

Click any thumbnail to view the full-resolution image. Screenshots illustrate the surfaces we map into APIs — watchlist list, valuation tier, physique health-check and screener output.

存股價值K線 screenshot 1 存股價值K線 screenshot 2 存股價值K線 screenshot 3 存股價值K線 screenshot 4 存股價值K線 screenshot 5 存股價值K線 screenshot 6 存股價值K線 screenshot 7 存股價值K線 screenshot 8 存股價值K線 screenshot 9 存股價值K線 screenshot 10

Similar apps & integration landscape

Teams that integrate Value K-Line typically already work with one or more of the apps below. Each holds a different slice of the Taiwan-equity data picture, and the same protocol-analysis playbook scales across them. We list them as ecosystem context, not as a ranking.

籌碼K線 (Chip K-Line)

CMoney's sister app focused on broker chips and major-player flow. Users running fundamental + chip analysis side-by-side often request a unified export combining Value K-Line scores with Chip K-Line broker concentration.

富果 Fugle

Visual research app for younger Taiwan investors, with EPS, dividend and ROE cards. Common ask: a single API that surfaces Fugle's card data alongside Value K-Line's valuation tier for the same ticker.

XQ 全球贏家

Heavy desktop-grade screener with hundreds of indicators and broker-account binding. Quant teams frequently want XQ's strategy outputs joined to Value K-Line's physique grade as an additional quality screen.

玩股網 (Wantgoo)

Educational and community-driven Taiwan investing platform. Integration use-cases focus on pulling course / community signals next to fundamental scores for retail-research dashboards.

FinLab

Quantitative trading platform for Taiwan equities with 900+ indicators and natural-language strategy. Often combined with Value K-Line scores as a domain-expert prior on top of FinLab's backtests.

Goodinfo!

Long-running web reference for Taiwanese fundamentals and dividends. Teams pair Goodinfo scrapes with Value K-Line's structured physique / mine-sweeping output to validate their internal data feeds.

投資先生 (Investment Master)

Smart-screener app with theme filters and bull/bear modes. Cross-app integration typically focuses on reconciling its theme cohorts with Value K-Line's growth/value strategy outputs.

高股息存股

Dividend-focused screener with a 15-indicator evaluation system. Natural pairing — many users hold both apps and want a unified high-dividend cohort with mine-sweeping exclusions applied.

行動股市

Lightweight Taiwan stock-quote viewer. Most common integration: feeding its quote stream into the same warehouse as Value K-Line's valuation tier for low-latency alerting.

股市爆料同學會

CMoney's largest Taiwan investor community with real-time discussion. Integration combines its post stream with Value K-Line scores to build sentiment + fundamentals overlays for retail dashboards.

About us

OpenFinance Lab is an independent technical studio focused on App protocol analysis and authorized API integration. Our team has shipped fintech, brokerage and OpenBanking work across Greater China, South-East Asia and Europe, and we ship end-to-end Taiwan-equity integrations under FSC and PDPA constraints.

  • Taiwan equities, dividend stocks, ETF analytics and cross-border clearing
  • Enterprise API gateways, security reviews and audit logging
  • Custom Python / Node.js / Go SDKs and test harnesses
  • Full pipeline: protocol analysis → build → validation → compliance hand-off
  • Source code delivery from $300 — runnable API source plus full documentation; pay after delivery upon satisfaction
  • Pay-per-call API billing — access our hosted endpoints and pay only per call, no upfront cost

Contact

To request a quote or share your target app and integration brief, open our contact page:

Contact page

We typically reply within one business day. NDAs available on request.

Engagement workflow

  1. Scope confirmation: which Value K-Line surfaces matter (watchlist, screeners, scores, threads).
  2. Protocol analysis and API design (2–5 business days, complexity-dependent).
  3. Build, internal validation and TWSE / TPEx OpenAPI fusion (3–8 business days).
  4. Documentation, runnable samples, Postman collection and test cases (1–2 business days).
  5. Typical first delivery: 5–15 business days; FSC-grade compliance reviews can extend timelines.

FAQ

What can I actually pull out of 存股價值K線 through your integration?

Watchlist contents, per-ticker fundamental scores (value, physique, mine-sweeping flags), screener result sets across the 10+ built-in strategies, and discussion-forum threads keyed to a stock. We map each item to a clean JSON schema and a CSV export so downstream tools can consume it without parsing the mobile UI.

Do you also pull official Taiwan market data, or only the app layer?

Both. The app layer gives you Value K-Line's proprietary scoring; we pair it with TWSE OpenAPI and TPEx OpenAPI feeds for daily prices, volume and corporate actions, so a single pipeline can combine personal watchlists with authoritative exchange data.

How long does a first delivery take?

A first cut covering login, watchlist export and one screener strategy is typically 5 to 10 business days. Adding the full set of fundamental endpoints, discussion threads and a TWSE/TPEx data lake usually pushes the project to 3 to 4 weeks.

Is this compliant with Taiwan's PDPA and FSC rules?

We work only with explicit user authorization or documented public data sources. Pipelines log consent, minimize stored fields, and respect Taiwan's Personal Data Protection Act plus the FSC's 2013 regulations on personal-information files held by financial-sector institutions, including breach notification and cross-border transfer constraints.
📱 Original app overview (appendix)

存股價值K線 (Value K-Line) is CMoney's value-investing app for Taiwan equities, marketed as a way to "evaluate the value of stocks from the fundamentals in one minute" so users can buy "good stocks with cheap prices." It sits inside CMoney's wider 理財寶 (Money-Wise) ecosystem, which also includes 籌碼K線, 股市起漲K線, 股市爆料同學會 and other Taiwan-focused finance apps.

The app is built around five core jobs and a community layer:

  • Stock Picking (選股): 10+ strategies across "find value", "select outstanding performance" and "select growth" so users can locate companies suitable for long-term holding.
  • Evaluation (估價): A one-second fundamental valuation per ticker so subscribers can avoid paying expensive prices and target cheap or fair zones.
  • Physique (體質): A health-check on each company, surfacing weak fundamentals quickly so users can skip stocks with structural issues.
  • Mine Sweeping (排雷): A risk filter that flags landmine stocks before order placement to keep portfolios safer.
  • Optional Stocks (自選股): A watchlist that shows current price plus the latest valuation and physique status for each held name.
  • Discussion (討論): A community where investors compare opinions and follow expert commentary, so users do not invest alone.

Recent versions have iterated on this base — v1.37.1 in mid-2024 refreshed broker-report summary data sources, and v1.37.4 in early 2025 brought routine optimizations. The app is available on both Android (com.cmoney.valuek) and iOS, with a Pro tier offered as a monthly subscription via CMoney's 理財寶 store.

Last updated: 2026-05-01