Zum Inhalt springen
GET /v1/live

Rooms live right now, ranked by viewers

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/showroom-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "The SHOWROOM rooms broadcasting right now across every genre, ranked by current viewers — each with its streamer name, viewer count, genre and how long it has been live. total_live_rooms and total_viewers are the platform-wide live picture. Pass limit (1-100, default 25). Live, cached ~45s.",
        "count": 25,
        "rooms": [
            {
                "name": "坂本 真凛(SKE48 チームS)",
                "genre": "Idol",
                "live_id": 23030755,
                "room_id": 76503,
                "viewers": 5197,
                "room_url": "https://www.showroom-live.com/48_MARIN_SAKAMOTO",
                "started_at": "2026-06-13T04:00:13.000Z",
                "live_minutes": 43
            },
            {
                "name": "〜17日ガチイベ中🐼音羽瑞歩(カグヤ新選組)",
                "genre": "Idol",
                "live_id": 23030528,
                "room_id": 531895,
                "viewers": 4698,
                "room_url": "https://www.showroom-live.com/6011d9068886",
                "started_at": "2026-06-13T02:02:56.000Z",
                "live_minutes": 160
            },
            {
                "name": "15日~楽曲提供☆I NOUうた☺︎💓☆",
                "genre": "Music",
                "live_id": 23030670,
                "room_id": 75721,
                "viewers": 3588,
                "room_url": "https://www.showroom-live.com/mayachacha",
                "started_at": "2026-06-13T03:10:00.000Z",
                "live_minutes": 93
            },
            {
                "name": "清水 紗良(STU48 2期生)",
                "genre": "Idol",
                "live_id": 23030671,
                "room_id": 270165,
                "viewers": 3570,
                "room_url": "https://www.showroom-live.com/48_SHIMIZU_SARA",
                "started_at": "2026-06-13T03:10:01.000Z",
                "live_minutes": 93
            },
            {
                "name": "ピンチ🆘TGC超ガチ🔥柳瀬なぎ🍭🍩",
                "genre": "Idol",
                "live_id": 23030689,
                "room_id": 490305,
                "viewers": 3408,
                "room_url": "https://www.showroom-live.com/AngeReve053",
                "started_at": "2026-06-13T03:20:36.000Z",
                "live_minutes": 82
            },
            {
                "name": "鈴木 恋奈(SKE48 チームS)",
                "genre": "Idol",
                "live_id": 23030761,
                "room_id": 223054,
                "viewers": 2706,
                "room_url": "https://www.showroom-live.com/48_KOKONA_SUZUKI",
                "started_at": "2026-06-13T04:00:42.000Z",
                "live_minutes": 42
            },
            {
                "name": "倉島 杏実(SKE48 チームS)",
                "genre": "Idol",
                "live_id": 23030773,
                "room_id": 76549,
                "viewers": 2354,
                "room_url": "https://www.showroom-live.com/48_AMI_KURASHIMA",
                "started_at": "2026-06-13T04:02:01.000Z",
         
…