TW Market Data LogoTW Market Data

Core data

Market & prices

TWSE / TPEx daily bars, adjusted prices, indices, and market breadth

Financials & growth

Monthly revenue, the three financial statements, financial metrics, and valuation data

Flows & positioning

Institutional investors and margin & short-selling data

Company & structure

Company & events

Company profiles, disclosures, events, corporate actions, and dividends

Taxonomy & structure

Theme taxonomy, index classification, and cross-dataset mapping

Strategy & quant

Features, factor data, time alignment, and screener

Platform capabilities

API access

REST API, authentication, and your first request

Query & tools

Search API, Query API, field lists, and query examples

Tools / MCP

Agent workflows, MCP tools, and the OpenAPI entry point

PricingDocsBlog
中文Dashboard

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|Help Center||中文|TW Market Data © 2026

Documentation

DASHBOARD

DashboardPricing

FOR AI AGENTS

MCP Serverllms.txtTool manifestOpenAPI SpecAgent workflow examples
WebhooksBuilding

OVERVIEW

OverviewQuick startAuthenticationSource policyData gradesData lineageMarket coverage

DATA APIS

Stock split & par-value eventsEnhanced corporate actionsESG (TESG)Corporate actionsDelisting lifecycleDisposition securities periodCompany risk eventsEvents calendar

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.

Companies & Events

Delisting lifecycle

Delisting lifecycle — the listing status and key lifecycle dates for each security, including suspension and delisting, from the official TWSE / TPEx records.

ReferenceSource: TWSE / TPEx·Plan: free·Cost: 1 credits·GET /v2/datasets/stock-delisting-lifecycle

Overview

stock-delisting-lifecycle is a reference dataset: one lifecycle record per security tracking its listing status and the dates it changed (listed, suspended, delisted), sourced from the official TWSE / TPEx records. Use it to know whether a ticker was tradable at a past date; each row carries its source role and lineage back to the upstream disclosure.

FieldTypeDescription
symbolstringTicker.
statusstringNormalized lifecycle status (e.g. listed, suspended, delisted).
listing_datestringDate the security was first listed.
delisting_datestringDate the security was delisted (null if still listed).
reasonstringReason for the status change as disclosed.
source_rolestringCanonical source role (official_twse_delisting_lifecycle).

Coverage

Rows263
WindowReference data, no time series
GradeReference

Example response

A real response from this endpoint. Rows are returned under "data", and provenance is carried in the shape shown below — it is not identical across datasets, so read this page's rather than assuming another's.

{  "dataset_id": "stock_delisting_lifecycle",  "request_context": {    "scope": "stock_delisting_lifecycle_twse_only",    "coverage_type": "twse_delisted_company_reference",    "snapshot_mode": "current_snapshot_only",    "filters": {      "market": "TWSE",      "code": null,      "date_from": null,      "date_to": null,      "event_type": null,      "source_family": null,      "limit": 50    },    "min_event_date": "2018-10-01",    "max_event_date": "2026-03-27"  },  "quality": {    "row_count": 50,    "code_count": 50,    "sensitive_fields_exposed": false  },  "lineage": {    "source_providers": [      "twse_official"    ],    "source_roles": [      "official_twse_delisted_company_table"    ],    "source_families": [      "twse_delisted_company_table"    ]  },  "error": null,  "data": [    {      "market": "TWSE",      "code": "3454",      "company_name": null,      "event_type": "delisting",      "announcement_date": null,      "suspension_date": null,      "delisting_date": "2026-03-27",      "reason_summary": null,      "source_provider": "twse_official",      "source_role": "official_twse_delisted_company_table",      "source_family": "twse_delisted_company_table",      "source_event_ref": "TWSE:suspendListing|3454|2026-03-27",      "lineage": {        "source_url": "https://www.twse.com.tw/rwd/en/company/suspendListing?response=html",        "source_scope": "TWSE_ONLY",        "source_title": "De-listed Companies",        "source_family": "twse_delisted_company_table",        "source_endpoint": "company/suspendListing"      },      "data_gaps": [        "company_name_missing"      ]    },    {      "market": "TWSE",      "code": "6423",      "company_name": "YMC",      "event_type": "delisting",      "announcement_date": null,      "suspension_date": null,      "delisting_date": "2026-01-22",      "reason_summary": null,      "source_provider": "twse_official",      "source_role": "official_twse_delisted_company_table",      "source_family": "twse_delisted_company_table",      "source_event_ref": "TWSE:suspendListing|6423|2026-01-22",      "lineage": {        "source_url": "https://www.twse.com.tw/rwd/en/company/suspendListing?response=html",        "source_scope": "TWSE_ONLY",        "source_title": "De-listed Companies",        "source_family": "twse_delisted_company_table",        "source_endpoint": "company/suspendListing"      },      "data_gaps": []    }  ],  "data_count": 50,  "known_gaps": [    "twse_only_scope",    "no_tpex_coverage",    "no_unified_security_lifecycle_claim"  ],  "warnings": [    "not_investment_advice",    "twse_only_scope"  ],  "not_investment_advice": true,  "envelope": {    "dataset_id": "stock_delisting_lifecycle",    "scope": "stock_delisting_lifecycle_twse_only",    "row_count": 50  }}

Captured from the live API on 2026-07-20.

Getting started

  1. Put your key in the X-API-Key header.
  2. Add query parameters (symbol, date range, limit).
  3. Send the request and read the data array.
curl "https://api.twmarketdata.com/v2/datasets/stock-delisting-lifecycle?symbol=2330" \  -H "X-API-Key: sk_live_..."

Filtering

ParameterRequiredTypeDescription
symbolNostringTicker to filter to a single security.
limitNointegerMaximum rows to return.

Python

A first call:

import requests resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/stock-delisting-lifecycle",    params={"symbol": "2330"},    headers={"X-API-Key": "sk_live_..."},)resp.raise_for_status()print(resp.json()["data"])

With a date-range filter:

import requests # The full verified example — the same call with every supported filter set.resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/stock-delisting-lifecycle",    params={"symbol": "2330"},    headers={"X-API-Key": "sk_live_..."},)resp.raise_for_status()for row in resp.json()["data"]:    print(row)

OpenAPI

This endpoint is GET /v2/datasets/stock-delisting-lifecycle. The full machine-readable schema (parameters, security, response envelope) lives in the OpenAPI spec.

Notes & limitations

  • This is the survivorship-safe companion to the active security master: use the lifecycle dates to reconstruct which tickers were tradable at a past date instead of assuming the current snapshot held then.

Request & Response

Request

curl "https://api.twmarketdata.com/v2/datasets/stock-delisting-lifecycle?symbol=2330&limit=5" \  -H "X-API-Key: $TWMD_API_KEY"

Authenticate with the X-API-Key header, using a sk_live_ key issued in the dashboard.

Response

JSON
{  "dataset_id": "stock_delisting_lifecycle",  "request_context": {    "scope": "stock_delisting_lifecycle_twse_only",    "coverage_type": "twse_delisted_company_reference",    "snapshot_mode": "current_snapshot_only",    "filters": {      "market": "TWSE",      "code": null,      "date_from": null,      "date_to": null,      "event_type": null,      "source_family": null,      "limit": 50    },    "min_event_date": "2018-10-01",    "max_event_date": "2026-03-27"  },  "quality": {    "row_count": 50,    "code_count": 50,    "sensitive_fields_exposed": false  },  "lineage": {    "source_providers": [      "twse_official"    ],    "source_roles": [      "official_twse_delisted_company_table"    ],    "source_families": [      "twse_delisted_company_table"    ]  },  "error": null,  "data": [    {      "market": "TWSE",      "code": "3454",      "company_name": null,      "event_type": "delisting",      "announcement_date": null,      "suspension_date": null,      "delisting_date": "2026-03-27",      "reason_summary": null,      "source_provider": "twse_official",      "source_role": "official_twse_delisted_company_table",      "source_family": "twse_delisted_company_table",      "source_event_ref": "TWSE:suspendListing|3454|2026-03-27",      "lineage": {        "source_url": "https://www.twse.com.tw/rwd/en/company/suspendListing?response=html",        "source_scope": "TWSE_ONLY",        "source_title": "De-listed Companies",        "source_family": "twse_delisted_company_table",        "source_endpoint": "company/suspendListing"      },      "data_gaps": [        "company_name_missing"      ]    },    {      "market": "TWSE",      "code": "6423",      "company_name": "YMC",      "event_type": "delisting",      "announcement_date": null,      "suspension_date": null,      "delisting_date": "2026-01-22",      "reason_summary": null,      "source_provider": "twse_official",      "source_role": "official_twse_delisted_company_table",      "source_family": "twse_delisted_company_table",      "source_event_ref": "TWSE:suspendListing|6423|2026-01-22",      "lineage": {        "source_url": "https://www.twse.com.tw/rwd/en/company/suspendListing?response=html",        "source_scope": "TWSE_ONLY",        "source_title": "De-listed Companies",        "source_family": "twse_delisted_company_table",        "source_endpoint": "company/suspendListing"      },      "data_gaps": []    }  ],  "data_count": 50,  "known_gaps": [    "twse_only_scope",    "no_tpex_coverage",    "no_unified_security_lifecycle_claim"  ],  "warnings": [    "not_investment_advice",    "twse_only_scope"  ],  "not_investment_advice": true,  "envelope": {    "dataset_id": "stock_delisting_lifecycle",    "scope": "stock_delisting_lifecycle_twse_only",    "row_count": 50  }}

Captured from a real call to this endpoint — not written by hand.

This dataset returns its rows under "data". The envelope differs between datasets, so read this one rather than reusing another page's shape.

The grade badge on this page is a documentation classification, not a response field.