Zum Inhalt springen
GET /v1/room

One room's profile by id

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

Beispiel-Response

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

{
    "data": {
        "note": "One SHOWROOM room's profile: its name, follower count, room level (SHOWROOM's standing metric, higher is more established), whether it is live right now and, if so, its current viewers. Live, cached ~45s.",
        "source": "SHOWROOM public web API (showroom-live.com/api/room/profile), keyless",
        "is_live": false,
        "room_id": 61576,
        "room_url": "https://www.showroom-live.com/48_Seina_Fukuoka",
        "followers": 24582,
        "image_url": "https://static.showroom-live.com/image/room/cover/cf6b8f12524a44ad3ee8684de42e39a379b389d55bba86c397b74a28e8649652_m.png?v=1781096760",
        "room_name": "福岡 聖菜(AKB48)",
        "room_level": 819,
        "description": "おしゃべり好きなのでぜひ気軽にみていってください☺️\r\n\r\n福岡聖菜 Seina Fukuoka\r\n \r\n【ニックネーム】せいちゃん\r\n\r\n.*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚\r\n\r\n【AKB48プライベートメールサービス】\r\nAKB48の推しメンバーから直接メールが届きます!\r\nhttps://www.akb48.co.jp/mailmagazine\r\n\r\n .*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚\r\n\r\n<プロフィール>\r\n【生年月日】\r\n 2000年8月1日\r\n\r\n【出身地】\r\n神奈川県\r\n \r\n.*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚ .゚・*.*・゚\r\n\r\n<SNS>\r\n【X(Twitter)】\r\nhttps://twitter.com/seina_fuku48\r\n\r\n【In",
        "current_viewers": 0
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:49.982Z",
        "request_id": "5dd3c452-3b07-4bb2-9a3f-910d9e76379e"
    },
    "status": "ok",
    "message": "Room retrieved successfully",
    "success": true
}