Intraday Tickers BETA
取得期權可交易商品列表(依條件查詢)
GET /intraday/tickers
Parameters
Name | Type | Description |
---|---|---|
type * | string | 類型,可選 FUTURE 期貨 ; OPTION 選擇權 |
exchange | string | 交易所,可選 TAIFEX 臺灣期貨交易所 |
session | string | 交易時段,可選 REGULAR 一般交易 或 AFTERHOURS 盤後交易 |
product | string | 契約代碼 |
contractType | string | 契約類別,可選 I 指數類;R 利率類;B 債券類;C 商品類;S 股票類;E 匯率類 |
Response
Name | Type | Description |
---|---|---|
type * | string | 期權類型 |
exchange * | string | 交易所 |
session | string | 交易時段 |
product | string | 契約代碼 |
contractType | string | 契約類別 |
data * | object[] | 商品列表 |
data[0].type | string | 期權類型 |
data[0].symbol | string | 商品代碼 |
data[0].name | string | 商品名稱 |
data[0].referencePrice | string | 參考價 |
data[0].contractType | string | 契約類別 |
data[0].startDate | string | 上市日期 |
data[0].endDate | string | 下市日期 |
data[0].flowGroup | string | 流程群組 |
data[0].settlementDate | string | 最後結算日 |
data[0].isDynamicBanding | boolean | 是否適用動態價格穩定 |
Example
- cURL
- Python
- Node.js
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>'
from fugle_marketdata import RestClient
client = RestClient(api_key = 'YOUR_API_KEY')
futopt = client.futopt
futopt.intraday.tickers(type='FUTURE', exchange='TAIFEX', session='REGULAR', product='TXF')
const { RestClient } = require("@fugle/marketdata");
const client = new RestClient({ apiKey: "YOUR_API_KEY" });
client.futopt.intraday
.tickers({ type: "FUTURE", exchange: "TAIFEX", session:'REGULAR', product:'TXF' })
.then((data) => console.log(data));
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"
}
]
}