/v1/quote
Live intraday quote
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/taiwanrealtime-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/taiwanrealtime-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/taiwanrealtime-api/v1/quote");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/taiwanrealtime-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "The live intraday quote for one or more Taiwan stocks — current price, open/high/low, previous close, change and cumulative volume each. Pass codes (comma-separate up to 10, e.g. 2330,2317) and market (tse for the main board, otc for TPEx; default tse). Real-time during Taiwan trading hours.",
"count": 2,
"market": "tse",
"quotes": [
{
"low": 2345,
"code": "2330",
"high": 2365,
"name": "台積電",
"open": 2360,
"price": null,
"change": null,
"market": "tse",
"volume": 10406,
"full_name": "台灣積體電路製造股份有限公司",
"trade_time": "10:10:40",
"change_percent": null,
"previous_close": 2310,
"last_trade_volume": null
},
{
"low": 265,
"code": "2317",
"high": 272.5,
"name": "鴻海",
"open": 271,
"price": null,
"change": null,
"market": "tse",
"volume": 25295,
"full_name": "鴻海精密工業股份有限公司",
"trade_time": "10:10:39",
"change_percent": null,
"previous_close": 260.5,
"last_trade_volume": null
}
],
"source": "Taiwan Exchange (mis.twse)"
},
"meta": {
"timestamp": "2026-06-15T02:10:46.468Z",
"request_id": "e4bcea4b-f260-4d6b-9296-337a98cbafed"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}