Building an AI agent? Start with /llms.txt for the full site index.
Derivatives & Convertibles
Convertible-bond custody (monthly) — per-bond month-end custody balance and change, from TDCC.
← Convertible Bond Custody (Monthly) overview
GET /v2/datasets/convertible-bond-monthlyConvertible Bond Custody (Monthly) is a Taiwan market dataset sourced from TDCC, served by TW Market Data as GET /v2/datasets/convertible-bond-monthly.
convertible-bond-monthly returns one row per convertible bond per month with the custody balance, the previous month's balance, the change amount and percent, issued units and custody accounts. Each row carries its source family and lineage.
| Field | Type | Description |
|---|---|---|
data_month | string | Data month (YYYY-MM). |
cb_id | string | Convertible-bond code. |
cb_name | string | Convertible-bond name. |
custody_balance | number | Month-end custody balance. |
last_month_balance | number | Previous month's balance. |
change_amount | number | Change amount vs previous month. |
change_percent | number | Change percent vs previous month. |
issued_units | number | Issued units. |
custody_accounts | number | Number of custody accounts. |
market | string | Market. |
| Rows | 757 |
| Window | 2026-06-01 – 2026-07-01 |
| Grade | Verified |
| 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": "convertible_bond_monthly",
"request_context": {
"scope": "tdcc_cb_monthly_custody_only",
"coverage_type": "official_monthly_accumulator",
"filters": {
"data_month": null,
"month_from": null,
"month_to": null,
"cb_id": "20662",
"limit": 50
},
"min_data_month": "2026-06-01",
"max_data_month": "2026-06-01"
},
"quality": {
"row_count": 1,
"cb_count": 1,
"sensitive_fields_exposed": false
},
"lineage": {
"source_families": [
"TDCC_GETOD_2_8"
],
"semantics": "<Chinese value - see the zh page>"
},
"error": null,
"data": [
{
"data_month": "2026-06-01",
"cb_id": "20662",
"cb_name": "<Chinese value - see the zh page>",
"custody_balance": 2378,
"last_month_balance": 2378,
"change_amount": 0,
"change_percent": 0,
"issued_units": 4000,
"custody_accounts": 27,
"market": "TPEx",
"source_family": "TDCC_GETOD_2_8",
"lineage": {
"note": "latest-period-only monthly accumulator",
"source": "TDCC_getOD_id_2-8"
}
}
],
"data_count": 1,
"known_gaps": [
"tpex_cb_only",
"latest_period_only_no_history_monthly_accumulator",
"<Chinese value - see the zh page>"
],
"warnings": [
"not_investment_advice"
],
"envelope": {
"dataset_id": "convertible_bond_monthly",
"scope": "tdcc_cb_monthly_custody_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_familylineagePart of the data in this service is obtained from the Government Open Data Platform (data.gov.tw) and used under the Open Government Data License, version 1.0. Providing agencies: Taiwan Stock Exchange, Taipei Exchange, Taiwan Futures Exchange, Taiwan Depository & Clearing Corporation, National Development Council, Central Bank of the Republic of China (Taiwan), Department of Statistics of the Ministry of Economic Affairs, and Customs Administration of the Ministry of Finance. The value-added processing, derived calculations and presentation in this service are the responsibility of TWMD and are not associated with the providing agencies.
TW Market Data. (n.d.). Convertible Bond Custody (Monthly) [Data set]. TW Market Data. Retrieved 2026-09-07, from https://twmarketdata.com/en/docs/api/derivatives/convertible-bond-monthly
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 cb_id + market
Joins on cb_id + market
Joins on market
Joins on market
Joins on market
curl "https://api.twmarketdata.com/v2/datasets/convertible-bond-monthly?cb_id=20662" \
-H "X-API-Key: sk_live_..."| Parameter | Required | Type | Description |
|---|---|---|---|
cb_id | No | string | Filter to a convertible-bond code. |
limit | No | integer | Maximum rows to return. |
import requests
resp = requests.get(
"https://api.twmarketdata.com/v2/datasets/convertible-bond-monthly",
params={"cb_id": "20662"},
headers={"X-API-Key": "sk_live_..."},
)
resp.raise_for_status()
print(resp.json()["data"])This endpoint is GET /v2/datasets/convertible-bond-monthly. The full machine-readable schema (parameters, security, response envelope) lives in the OpenAPI spec.