Vai al contenuto
GET /v1/station

One broadcaster's channel profile by bj_id

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/soop-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "One SOOP broadcaster's channel: their follower count, the all-time views and visits the channel has drawn, when they joined, their total hours broadcast and their partner/best-BJ status — plus, if they are live now, their current viewer count and how long they have been on. Live, cached ~45s.",
        "bj_id": "sccha21",
        "joined": "2010-10-04 11:29:49",
        "source": "SOOP public web API (chapi.sooplive.co.kr/api/{bj}/station), keyless",
        "is_live": true,
        "followers": 522531,
        "is_best_bj": true,
        "channel_url": "https://play.sooplive.co.kr/sccha21",
        "total_views": 454574956,
        "live_minutes": null,
        "live_viewers": null,
        "total_visits": 17887479,
        "is_partner_bj": true,
        "profile_image": "//profile.img.sooplive.co.kr/LOGO/sc/sccha21/sccha21.jpg",
        "station_title": "메이플스토리 스카니아 방송",
        "total_broadcast_hours": 60084
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:48.480Z",
        "request_id": "840391d3-e369-453b-8c06-5b8a64f34264"
    },
    "status": "ok",
    "message": "Station retrieved successfully",
    "success": true
}