Skip to main content

Intraday Tickers BETA

取得期權可交易商品列表(依條件查詢)

GET /intraday/tickers

Parameters

NameTypeDescription
type*string類型,可選 FUTURE 期貨 ; OPTION 選擇權
exchangestring交易所,可選 TAIFEX 臺灣期貨交易所
sessionstring交易時段,可選 REGULAR 一般交易 或 AFTERHOURS 盤後交易
productstring契約代碼
contractTypestring契約類別,可選 I 指數類;R 利率類;B 債券類;C 商品類;S 股票類;E 匯率類

Response

NameTypeDescription
type*string期權類型
exchange*string交易所
sessionstring交易時段
productstring契約代碼
contractTypestring契約類別
data*object[]商品列表
data[0].typestring期權類型
data[0].symbolstring商品代碼
data[0].namestring商品名稱
data[0].referencePricestring參考價
data[0].contractTypestring契約類別
data[0].startDatestring上市日期
data[0].endDatestring下市日期
data[0].flowGroupstring流程群組
data[0].settlementDatestring最後結算日
data[0].isDynamicBandingboolean是否適用動態價格穩定

Example

curl -X 'GET' \
'https://api.fugle.tw/marketdata/v1.0/futopt/intraday/tickers?type=FUTURE&exchange=TAIFEX&session=REGULAR&product=TXF' \
-H 'X-API-KEY: <YOUR_API_KEY>'

Response Body:

{
"type": "FUTURE",
"exchange": "TAIFEX",
"session": "REGULAR",
"product": "TXF",
"data": [
{
"symbol": "TXFC5",
"type": "FUTURE",
"contractType": "I",
"endDate": "2025-03-19",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨035",
"referencePrice": 22275,
"settlementDate": "2025-03-19",
"startDate": "2024-03-21"
},
{
"symbol": "TXFF4",
"type": "FUTURE",
"contractType": "I",
"endDate": "2024-06-19",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨064",
"referencePrice": 22477,
"settlementDate": "2024-06-19",
"startDate": "2023-06-26"
},
{
"symbol": "TXFG4",
"type": "FUTURE",
"contractType": "I",
"endDate": "2024-07-17",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨074",
"referencePrice": 22346,
"settlementDate": "2024-07-17",
"startDate": "2024-04-18"
},
{
"symbol": "TXFH4",
"type": "FUTURE",
"contractType": "I",
"endDate": "2024-08-21",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨084",
"referencePrice": 22294,
"settlementDate": "2024-08-21",
"startDate": "2024-05-16"
},
{
"symbol": "TXFI4",
"type": "FUTURE",
"contractType": "I",
"endDate": "2024-09-18",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨094",
"referencePrice": 22267,
"settlementDate": "2024-09-18",
"startDate": "2023-09-21"
},
{
"symbol": "TXFL4",
"type": "FUTURE",
"contractType": "I",
"endDate": "2024-12-18",
"flowGroup": 1,
"isDynamicBanding": true,
"name": "臺股期貨124",
"referencePrice": 22271,
"settlementDate": "2024-12-18",
"startDate": "2023-12-21"
}
]
}