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

Derivatives & Convertibles

TAIFEX final settlement price

TAIFEX final settlement price

VerifiedSource: TAIFEX·Plan: max·Cost: 2 credits·GET /v2/datasets/futures-final-settlement

TAIFEX final settlement price is a Taiwan market dataset sourced from TAIFEX, served by TW Market Data as GET /v2/datasets/futures-final-settlement.

Overview

TAIFEX final settlement price — grain: contract / settlement_date.

FieldTypeDescription
settlement_datestringSettlement date
product_typestringProduct type (futures / options)
contractstringContract code
contract_namestring
contract_delivery_monthstringDelivery month
settlement_pricenumberFinal settlement price
marketstring

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": "futures_final_settlement",  "request_context": {    "scope": "taifex_futures_final_settlement_only",    "coverage_type": "snapshot_latest_settlement_round",    "filters": {      "contract": null,      "settlement_date": null,      "date_from": "2026-07-29",      "date_to": "2026-07-29",      "contract_delivery_month": null,      "limit": 50    },    "min_settlement_date": "2026-07-29",    "max_settlement_date": "2026-07-29"  },  "quality": {    "row_count": 1,    "contract_count": 1,    "sensitive_fields_exposed": false  },  "lineage": {    "source_families": [      "TAIFEX_FSP"    ],    "semantics": "<Chinese value - see the zh page>"  },  "error": null,  "data": [    {      "settlement_date": "2026-07-29",      "product_type": "futures",      "contract": "TX/TMF",      "contract_name": "<Chinese value - see the zh page>",      "contract_delivery_month": "202607W5",      "settlement_price": 40035,      "market": "TAIFEX",      "source_family": "TAIFEX_FSP",      "lineage": {        "source": "TAIFEX_OpenAPI",        "endpoint": "FinalSettlementPrice"      }    }  ],  "data_count": 1,  "known_gaps": [    "snapshot_source_latest_settlement_round",    "rolled_off_settlements_not_re_verifiable",    "not_investment_advice"  ],  "warnings": [    "not_investment_advice"  ],  "envelope": {    "dataset_id": "futures_final_settlement",    "scope": "taifex_futures_final_settlement_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.

Provenance

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_familylineage

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/futures-final-settlement?symbol=2330" \  -H "X-API-Key: sk_live_..."

Filtering

ParameterRequiredTypeDescription
symbolYesstringTicker, e.g. 2330.
start_dateNostring (YYYY-MM-DD)Start of the query range.
end_dateNostring (YYYY-MM-DD)End of the query range.
limitNointegerMaximum rows to return.

Python

A first call:

import requests resp = requests.get(    "https://api.twmarketdata.com/v2/datasets/futures-final-settlement",    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/futures-final-settlement",    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/futures-final-settlement. The full machine-readable schema (parameters, security, response envelope) lives in the OpenAPI spec.