Ir al contenido
GET /v1/timetable

Scheduled and currently-running streams

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/showroom-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}