Quick Start
Fugle Market Web API provides developer-friendly API services. You can access data such as daily Future / Option market information for the Taiwan future market。
Rate Limit
If your API requests exceed the limit, you will receive a response with a status code 429 ( For detailed limitations, please refer to Rate Limit )
API Category
API are categorized based on data types into intraday(盤中行情)
-
/intraday/products
- Futures and Options Contract List(Query by conditions) -
/intraday/tickers
- Futures and Options product list(Query by condition) -
/intraday/quote/{symbol}
- Real-time quotes (query by symbol) -
/intraday/candles/{symbol}
- Contract K Line(Query by symbol) -
/intraday/trades/{symbol}
- Contract trade details (query by symbol) -
/intraday/volumes/{symbol}
- Futures and Options price-volume data(query by symbol)
Using SDK
Fugle Market Web API offers Python 、 Node.js and C# SDKs. You can access the API through the following methods:
- Python
- Node.js
- C#
from fubon_neo.sdk import FubonSDK, Order
sdk = FubonSDK()
accounts = sdk.login("Your ID", "Your password", "Your cert path", "Your cert password")
sdk.init_realtime()
restfutopt = sdk.marketdata.rest_client.futopt
const { FubonSDK } = require('fubon-neo');
const sdk = new FubonSDK();
const accounts = sdk.login("Your ID", "Your Password", "Your Cert Path", "Your Cert Password");
sdk.initRealtime();
const client = sdk.marketdata.restClient
const futopt = client.futopt;
using FubonNeo.Sdk;
var sdk = new FubonSDK();
var result = sdk.Login("Your ID", "Your password", "Your cert path", "Your cert password");
sdk.InitRealtime();
var rest = sdk.MarketData.RestClient.FutureOption;