TW Market Data LogoTW Market Data

Facts & statistics

Market facts

Long-run statistics for Taiwan equities, each with its sample period and as_of

Seasonality

Monthly return distributions and hit rates, with sample sizes

Institutional flow

Seasonality in the breadth of institutional net buying

Limit events

How often limit moves happen, and how concentrated they are

Delisting

Delisting counts and survival spans — the basis for avoiding survivorship bias

Rule changes

A timeline of trading-rule changes — the premise for reading historical data

Data & exploration

Dataset catalogue

Every dataset, its coverage, and how often it updates

Playground

Call the API from the browser, without a key

Market today

Today's market at a glance

Stock analysis

The entry point for looking at one instrument

Market heat map

The whole market in one picture — area is market cap, colour is revenue growth

Market calendar

Statutory disclosure deadlines — the day a figure may legally first be known

Platform capabilities

Product overview

What TWMD provides, and who it is built for

Verifiable proof

Signed checkpoints and per-row inclusion proofs

Data quality

Reconciliation, gap handling, and quality status

Methodology

How the figures are computed, and on what basis

Auditable execution

Tie a trading decision back to the data it saw

Connect your broker

Bring TWMD into an existing order and research workflow

Developers

Documentation

API reference, dataset pages, and integration guides

Quick start

Authentication and your first request

Integrate by role

Separate paths for quant research, data engineering, and app development

Connect over MCP

Point an agent straight at TWMD

MCP registry

The published MCP tool list and its signed manifest

Webhooks

Have your system told when data updates

Learn

Blog

Long-form writing on data, method, and market structure

Answers

Specific answers to specific questions, with sources

Topics

Industry chains and thematic relationships

Help centre

Account, billing, and usage questions

Glossary

Definitions for Taiwan-market and data terms

Compare & status

Why TWMD

A point-by-point comparison with FinMind and TEJ

Migrate from FinMind

Field mapping and migration steps

Migrate from FinLab

Field mapping and migration steps

Migrate from TEJ

Field mapping and migration steps

Status

Service availability and incident history

Security & trust

Trust centre

What we claim, and the limits on each claim

Security

Architecture, access control, and incident handling

Security facts

The items you can verify from outside

Security evidence

SBOM, ASVS mapping and threat model — including the three controls we do not meet.

Self-assessment

Item-by-item answers for a procurement questionnaire

Compliance & standards

Compliance mapping

Evidence primitives mapped onto FSB, IOSCO, and SR 26-2

Standards & interop

Term-by-term mapping onto published standards, and where it does not map

Provenance & C2PA

A machine-readable origin graph, fetchable without a key

Licensing

How the data may be used and redistributed

Adoption

Evaluate

Seven checks you can run yourself, without an account

Talk to sales

Enterprise plans, quotas, and contract detail

Pricing
中文Sign inSign up
TW Market Data

Taiwan market-data infrastructure, built for AI agents and quantitative workflows.

Status unknown
© 2026 TW Market Data

TW Market Data (TWMD) provides historical data and statistics, not investment advice; investment decisions and their risks are your own.

  • Privacy Policy·
  • Terms of Service·
  • Cookie Policy·
  • Acceptable Use Policy·
  • Data Sources & Licensing·
  • Legal (all documents)
中文

AI Agent

  • MCP Server
  • Skills
  • Tool manifest
  • Agent workflow examples
  • Agent benchmark
  • llms.txt
  • OpenAPI spec

Security

  • Security overview
  • Verifiable data
  • Trust Center
  • Standards & Interop
  • Regulatory mapping

Product

  • Datasets
  • Topics
  • Market facts
  • Documentation
  • Integration runbooks
  • Playground (no signup)
  • Free tier
  • Solutions

Company

  • About TWMD
  • Blog
  • Help centre
  • Pricing

Documentation

DASHBOARD

DashboardPricing

FOR AI AGENTS

MCP ServerSkillsllms.txtTool manifestOpenAPI SpecAgent workflow examples

OVERVIEW

OverviewQuick startAuthenticationSource policyData gradesData lineageMarket coverage

DATA APIS

GUIDES

How to get the 3 financial statementsHow to read institutional flowsHow to check market statusHow to wire a strategy / AI agent

SDKS

Release statusPython SDKJavaScript / TypeScript SDK

Building an AI agent? Start with /llms.txt for the full site index.

Workflows / Use Cases

Researching company fundamentals

Building a verifiable Taiwan fundamentals workflow from monthly revenue, the income statement, the balance sheet and valuation data.

Who this is for

Developers, researchers and agent integrators building a Taiwan fundamentals workflow on the API.

If what you want is a research process that reruns and can be checked, start here.

Which datasets fundamentals research uses

Fundamentals work usually draws on monthly revenue, the income statement, the balance sheet, the cash flow statement and valuation data. Use one consistent rule for tickers, dates and sourcing across all of them — cross-dataset misalignment is the most common way this goes wrong.

  • Dataset pages: /datasets/monthly-revenue, /datasets/income-statement, /datasets/balance-sheet, /datasets
  • API docs: /docs/api/financial-growth/monthly-revenue, /docs/api/financial-growth/income-statement, /docs/api/financial-growth/balance-sheet, /docs/api/financial-growth/valuation-data

Prerequisites

Before starting:

  • Python 3.9+
  • requests
  • X-API-Key
  • A symbol, for example 2330

Authentication

Every request carries X-API-Key. The examples below read different datasets through the same helper function.

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {
"X-API-Key": "your_api_key_here",
}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

Querying the issuer profile

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

profile = get_dataset(
"/v2/datasets/issuer-profile",
{"symbol": "2330"},
)

print(profile)

Querying monthly revenue

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

monthly_revenue = get_dataset(
"/v2/datasets/monthly-revenue",
{
"symbol": "2330",
"limit": 12,
},
)

print(monthly_revenue)

Querying the income statement

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

income_statement = get_dataset(
"/v2/datasets/income-statement",
{"symbol": "2330", "limit": 4},
)

print(income_statement)

Querying the balance sheet

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

balance_sheet = get_dataset(
"/v2/datasets/balance-sheet",
{"symbol": "2330", "limit": 4},
)

print(balance_sheet)

Querying the cash flow statement

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

cash_flow = get_dataset(
"/v2/datasets/cash-flow-statement",
{"symbol": "2330", "limit": 4},
)

print(cash_flow)

Querying valuation data

import requests

BASE_URL = "https://api.twmarketdata.com"
HEADERS = {"X-API-Key": "your_api_key_here"}

def get_dataset(path, params):
response = requests.get(
f"{BASE_URL}{path}",
headers=HEADERS,
params=params,
)
response.raise_for_status()
return response.json()

valuation_data = get_dataset(
"/v2/datasets/valuation-data",
{"symbol": "2330", "limit": 4},
)

print(valuation_data)

Assembling a fundamentals summary

In practice: read the change in monthly revenue first, then the income statement and balance sheet, and use valuation data last to relate price back to the fundamentals.

company_name = (profile.get("rows") or [{}])[0].get("company_name")
latest_revenue_yoy = (monthly_revenue.get("rows") or [{}])[0].get("yoy_growth_pct")
latest_eps = (income_statement.get("rows") or [{}])[0].get("eps")
latest_per = (valuation_data.get("rows") or [{}])[0].get("per")
latest_pbr = (valuation_data.get("rows") or [{}])[0].get("pbr")

summary = {
"company_name": company_name,
"latest_revenue_yoy": latest_revenue_yoy,
"latest_eps": latest_eps,
"latest_per": latest_per,
"latest_pbr": latest_pbr,
}

print(summary)

Data gaps and freshness

Datasets update on different cadences and disclose at different times. Before using them together, check each response's time fields, its range and its data_gaps.

TW Market Data preserves source role and gap information. Do not assume any dataset covers every date for every ticker.

Next steps

With a fundamentals summary in place, the natural extensions are:

  • /docs/api/market-prices/twse-daily-price
  • /docs/api/query-tools/query-api
  • /docs/workflows/market-status
  • /datasets/monthly-revenue
  • /datasets/income-statement
  • /datasets/balance-sheet

On this page

  • Who this is for
  • Which datasets fundamentals research uses
  • Prerequisites
  • Authentication
  • Querying the issuer profile
  • Querying monthly revenue
  • Querying the income statement
  • Querying the balance sheet
  • Querying the cash flow statement
  • Querying valuation data
  • Assembling a fundamentals summary
  • Data gaps and freshness
  • Next steps