Vai al contenuto
GET /v1/timetable

Scheduled and currently-running streams

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "note": "SHOWROOM's stream timetable — the scheduled and currently-running streams, each with its room, start time, whether it is live now (is_live) and current viewers. order=asc (default, soonest first) or desc. Pass limit (1-100). Live, cached ~45s.",
        "count": 0,
        "order": "asc",
        "source": "SHOWROOM public web API (showroom-live.com/api/time_table/time_tables), keyless",
        "streams": []
    },
    "meta": {
        "timestamp": "2026-06-13T13:48:31.085Z",
        "request_id": "dac13b69-1e07-426b-95b3-0271fd3cdff8"
    },
    "status": "ok",
    "message": "Timetable retrieved successfully",
    "success": true
}