Building an AI agent? Start with /llms.txt for the full site index.
Funds & Corporate Intelligence
Fund / ETF metadata — the reference record for each listed fund and ETF (identity, issuer, type).
← Fund / ETF metadata overview
GET /v2/datasets/fund-etf-metadataFund / ETF metadata is a Taiwan market dataset sourced from Issuer, served by TW Market Data as GET /v2/datasets/fund-etf-metadata.
fund-etf-metadata is a reference dataset: one record per fund/ETF used to resolve a code to its issuer and type. It is metadata, not a price or flow time series.
| Field | Type | Description |
|---|---|---|
fund_code | string | |
market | string | |
fund_name | string | |
issuer | null | Issuing institution. |
listing_date | string | |
fund_type | string | Fund / ETF type. |
underlying_index | string | |
currency | null | |
source_as_of_date | string |
| Rows | 268 |
| Window | 2026-08-22 – 2026-08-22 |
| Grade | Reference |
| Measured | 2026-09-01from the dataset registry |
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": "fund_etf_metadata",
"request_context": {
"scope": "fund_etf_metadata_latest_snapshot_only",
"coverage_type": "latest_snapshot_only",
"filters": {
"fund_code": "00400A",
"market": null,
"issuer": null,
"fund_type": null,
"source_as_of_date": null,
"source_family": null,
"limit": 50
},
"min_source_as_of_date": "2026-08-03",
"max_source_as_of_date": "2026-08-03"
},
"quality": {
"row_count": 1,
"fund_count": 1,
"sensitive_fields_exposed": false
},
"lineage": {
"source_providers": [
"twse_official"
],
"source_roles": [
"official_twse_t187ap47_l"
],
"source_families": [
"twse_fund_etf_metadata"
]
},
"error": null,
"data": [
{
"fund_code": "00400A",
"market": "TWSE",
"fund_name": "<Chinese value - see the zh page>",
"issuer": null,
"listing_date": "2026-04-09",
"fund_type": "<Chinese value - see the zh page>",
"underlying_index": "<Chinese value - see the zh page>",
"currency": null,
"source_as_of_date": "2026-08-03",
"source_provider": "twse_official",
"source_role": "official_twse_t187ap47_l",
"source_family": "twse_fund_etf_metadata",
"lineage": {
"depth": "latest_snapshot_only",
"emitter": "build_reference_refresh_candidates",
"source_name": "t187ap47_L"
},
"data_gaps": [
"issuer_not_provided_by_source",
"currency_not_provided_by_source"
],
"not_investment_advice": true
}
],
"data_count": 1,
"known_gaps": [
"latest_snapshot_only",
"twse_first_baseline",
"tpex_supplemental_not_full_baseline"
],
"warnings": [
"not_investment_advice"
],
"not_investment_advice": true,
"envelope": {
"dataset_id": "fund_etf_metadata",
"scope": "fund_etf_metadata_latest_snapshot_only",
"row_count": 1
}
}Captured from the live API on 2026-07-20.
Chinese data values are shown as a marker here so this page stays in English; the /zh page shows them verbatim.
These columns are returned alongside the data and record where the row came from. They are provenance, not the dataset's subject matter, so they are listed here rather than in the field table.
source_providersource_rolesource_familylineagedata_gapsnot_investment_adviceSource: Fund issuers / exchange official disclosure — Sourced from issuer and exchange official disclosure, not from the Government Open Data Platform.
TW Market Data. (n.d.). Fund / ETF metadata [Data set]. TW Market Data. Retrieved 2026-09-05, from https://twmarketdata.com/en/docs/api/funds-intel/fund-etf-metadata
The version is the dataset's own as_of, not the date this page was built. Where we have no as_of the field is left out rather than filled in. Check a signature
Datasets that join with this one. The key each pair aligns on is shown, so you can plan a multi-table query without guessing.
Joins on market
Joins on market
Joins on market
Joins on market
Joins on market
curl "https://api.twmarketdata.com/v2/datasets/fund-etf-metadata?fund_code=00400A" \
-H "X-API-Key: sk_live_..."| Parameter | Required | Type | Description |
|---|---|---|---|
symbol | No | string | Ticker to filter to a single security. |
limit | No | integer | Maximum rows to return. |
import requests
resp = requests.get(
"https://api.twmarketdata.com/v2/datasets/fund-etf-metadata",
params={"fund_code": "00400A"},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["data"])This endpoint is GET /v2/datasets/fund-etf-metadata. The full machine-readable schema (parameters, security, response envelope) lives in the OpenAPI spec.