/v1/search
Find broadcasters (BJs) by name
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/soop-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soop-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soop-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/soop-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "SOOP broadcasters (BJs) matching a name — each with its bj_id (use it with /v1/station), follower count, all-time channel views, grade and last broadcast date. Pass q (required) and limit (1-50). Live, cached ~45s.",
"count": 20,
"query": "lol",
"source": "SOOP public search API (sch.sooplive.co.kr, bjSearch), keyless",
"broadcasters": [
{
"bj_id": "aflol",
"grade": 0,
"bj_nick": "LCK_KR",
"followers": 394448,
"channel_url": "https://play.sooplive.co.kr/aflol",
"total_views": 611565698,
"station_title": "SOOP 공식 LoL 리그 채널입니다.",
"last_broadcast": "2026-06-13 14:15:01"
},
{
"bj_id": "lolsos",
"grade": 1,
"bj_nick": "#미래:3",
"followers": 119543,
"channel_url": "https://play.sooplive.co.kr/lolsos",
"total_views": 13955126,
"station_title": "미래가 미래다",
"last_broadcast": "2026-04-18 19:08:28"
},
{
"bj_id": "loll12",
"grade": 0,
"bj_nick": "이지아♡",
"followers": 116433,
"channel_url": "https://play.sooplive.co.kr/loll12",
"total_views": 13882163,
"station_title": "제일좋은건 그대들과 함께보내는 시간들",
"last_broadcast": "2025-01-10 10:54:39"
},
{
"bj_id": "aflol01",
"grade": 0,
"bj_nick": "LoL_공식2",
"followers": 73577,
"channel_url": "https://play.sooplive.co.kr/aflol01",
"total_views": 51192900,
"station_title": "LoL 공식리그 방송국입니다.",
"last_broadcast": "2026-01-09 17:02:06"
},
{
"bj_id": "lolbjmatch",
"grade": 0,
"bj_nick": "LoL멸망전",
"followers": 49727,
"channel_url": "https://play.sooplive.co.kr/lolbjmatch",
"total_views": 28601810,
"station_title": "리그 오브 레전드 멸망전 공식 방송국입니다.",
"last_broadcast": "2026-03-14 16:30:01"
},
{
"bj_id": "rjsqn0618",
"grade": 0,
"bj_nick": "Canyon_lol",
"followers": 26268,
"channel_url": "https://play.sooplive.co.kr/rjsqn0618",
"total_views": 754427,
"station_title": null,
"last_broadcast": "2026-06-05 23:03:36"
},
{
"bj_id": "vgloldv",
"grade": 1,
"bj_nick": "채수연TV",
"followers": 14504,
"channel_url": "https://play.sooplive.co.kr/vgloldv",
"total_views": 4764199,
"st
…