Μετάβαση στο περιεχόμενο
GET /v1/station

One broadcaster's channel profile by bj_id

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/soop-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}