Vai al contenuto
GET /v1/index

Live value of the SET Index

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/set-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/set-api/v1/index" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/set-api/v1/index", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/set-api/v1/index");
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/set-api/v1/index",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "low": 1582.26,
        "high": 1595.84,
        "name": "SET Index",
        "note": "The live value of the SET Index (the Stock Exchange of Thailand benchmark) — current level, change, and the day's open/high/low. Pass name (SET; default SET).",
        "open": 1588.1,
        "index": "SET",
        "value": 1592.41,
        "change": 20.090000000000146,
        "source": "Stock Exchange of Thailand / SET (TradingView)",
        "change_percent": 1.28
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:42.507Z",
        "request_id": "8cbd8f77-f3d9-43f1-a51e-44b41e05edea"
    },
    "status": "ok",
    "message": "Index retrieved successfully",
    "success": true
}