/v1/meta
Service metadata
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/soop-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soop-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soop-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "live takes limit (1-60, default 25). categories and meta take no parameters. station takes bj_id (a SOOP broadcaster id, required). Viewer and follower counts are live integers; timestamps are KST as reported, durations computed in minutes/hours. A short ~45-second cache fronts the upstream.",
"sample": {
"top_bj": "팡이요",
"viewers": 4314,
"total_live_broadcasts": 1641
},
"source": "SOOP public web API (sooplive.co.kr), keyless, live",
"service": "soop-api",
"endpoints": {
"GET /v1/live": "Top broadcasts live now, ranked by viewers (limit).",
"GET /v1/meta": "This document.",
"GET /v1/station": "One broadcaster's channel profile by bj_id (bj_id=sccha21).",
"GET /v1/categories": "Top live broadcasts aggregated by category."
},
"description": "Live data from SOOP (formerly AfreecaTV), South Korea's biggest live-streaming platform, from its public web API (no key). The live endpoint lists the top broadcasts on air now ranked by viewers (BJ name, title, viewers, category, live duration); categories aggregates the top live broadcasts by game/genre; station returns one broadcaster's channel profile by BJ id (followers, all-time views/visits, join date, total broadcast hours, partner/best-BJ status, live status). The SOOP platform cut — a distinct social/streaming platform, separate from the Twitch, Kick, SHOWROOM, Bilibili and other feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T04:42:48.559Z",
"request_id": "b957d7e0-2f2b-4526-b583-8c6eecf1aa29"
},
"status": "ok",
"message": "Meta",
"success": true
}