/v1/timetable
Scheduled and currently-running streams
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}