/v1/search
Find rooms by name
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/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/showroom-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/showroom-api/v1/search");
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/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "SHOWROOM rooms matching a name — each with its room_id (use it with /v1/room), follower count, room level, whether it is an official room and whether it is online right now. Pass q (required) and limit (1-50). Live, cached ~45s.",
"count": 3,
"query": "AKB",
"rooms": [
{
"name": "北澤 苺(STU48 3期生)",
"level": 321,
"room_id": 452134,
"genre_id": 102,
"room_url": "https://www.showroom-live.com/48_KITAZAWA_ICHIGO",
"followers": 4418,
"is_online": false,
"is_official": true,
"last_lived_at": "2026-06-11T14:23:25.000Z"
},
{
"name": "Anindya /アニンディア(JKT48)",
"level": 198,
"room_id": 461452,
"genre_id": 102,
"room_url": "https://www.showroom-live.com/JKT48_Anindya",
"followers": 552185,
"is_online": false,
"is_official": true,
"last_lived_at": "2026-06-11T12:41:18.000Z"
},
{
"name": "【本日21:00~番組】トナカイになろうよ!三田航佑🎅",
"level": 638,
"room_id": 471291,
"genre_id": 105,
"room_url": "https://www.showroom-live.com/nsctokyo2802",
"followers": 1015,
"is_online": false,
"is_official": true,
"last_lived_at": "2026-06-13T11:55:26.000Z"
}
],
"source": "SHOWROOM public web API (showroom-live.com/api/search/room), keyless"
},
"meta": {
"timestamp": "2026-06-13T13:48:32.081Z",
"request_id": "307f5a7b-976e-41e6-883c-d2296b254324"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}