/v1/timetable
Scheduled and currently-running streams
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}