One channel's stats and live state
API · /kick-api
Kick API
Live channel, stream and category data from Kick — the fast-growing live-streaming platform and the main Twitch challenger — with no account and no key. The channel endpoint resolves any Kick channel by its slug (the name in kick.com/<slug>) to its profile: follower count, verified status, whether it is live right now and — when live — the current viewer count, stream title and category, plus the streamer's bio and the categories they have recently streamed. The live endpoint is the discovery view: the top live streams across all of Kick right now, ranked by viewer count, each with the streamer, title, category, viewers, language and how long it has been live. The categories endpoint ranks the top categories (games and sections) by how many viewers are watching them across the platform right now — the live pulse of what Kick is watching. The search endpoint finds channels by name. This is the Kick platform cut — a distinct social/streaming platform, separate from the Twitch, YouTube, TikTok and other platform APIs in the catalogue. Follower and viewer counts are live; ideal for streaming dashboards, creator-analytics, discovery and social-monitoring tools.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 1055 ms
- Server probes · 24h
- Subscribers
- 3,397
- active
- Total calls
- 100
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 1,150 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 1,150 calls/month
- 2 req/sec
- All endpoints
- No credit card
Starter
€10.40 /month
- 25,500 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 25.5k calls/month
- 6 req/sec
- Channel + live + categories
- Email support
Pro
€30.60 /month
- 128,000 calls / month
- 16 requests / second
- Hard cap (429 above quota, no overage)
- 128k calls/month
- 16 req/sec
- Live discovery + search
- Priority support
Mega
€71.50 /month
- 705,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 705k calls/month
- 40 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
DLive Streaming API
Live data from DLive, the blockchain-based livestreaming platform, with no key. Look up any streamer's public profile (followers, following, partner status, whether they are live and what they are streaming); read DLive's front-page recommended channels; pull the live-stream directory ordered by trending/new; browse the game and category directory with live viewer counts; read a single category's detail; and search streamers by name. The creator / livestreaming / audience-stats layer for stream dashboards, creator tools, analytics and discovery — distinct from the Kick and other streaming readers. Live from DLive; short cache only.
api.oanor.com/dlive-api
Bandcamp API
Live data from Bandcamp, the independent-music marketplace and streaming platform, with no account and no key. Bandcamp is where independent artists and labels sell and stream music directly to fans; this reads Bandcamp's own public web/mobile JSON and returns clean results. Search across bands, albums, tracks and labels by name (each result with its kind, name, artist, page url, location and cover art); read an album or track in full — its artist, full tracklist with durations, price and currency (many releases are free or name-your-price), release date, tags and cover art; and read a band/artist profile with its complete discography. The artist-direct music-commerce layer for music discovery, price-comparison, fan tools and analytics. Distinct from streaming-catalogue and record-database APIs — this is Bandcamp's own marketplace. Live from Bandcamp; short cache only.
api.oanor.com/bandcamp-api
CHZZK Live Streaming API
Live data from CHZZK (chzzk.naver.com), the Korean live-streaming platform built and run by Naver, Korea's dominant web portal. CHZZK rose fast after Twitch withdrew from Korea and is now one of the country's two big streaming platforms alongside SOOP — gamers, just-chatting, sports and esports broadcasters streaming to large Korean audiences. The live endpoint lists the streams on air right now ranked by current viewers, each with its channel name, title, concurrent viewer count, this broadcast's accumulated viewers, category and how long it has been live. The categories endpoint aggregates the top live streams by category (the games and genres pulling the biggest audiences right now). The channel endpoint returns one channel's profile by its 32-character channel id: follower count, verified status, description and whether it is live now. The search endpoint finds CHZZK channels by keyword, each with follower count and live status. This is the CHZZK platform cut — a distinct social/streaming platform, separate from the SOOP, SHOWROOM, Niconico, Twitch, Kick, Bilibili and other feeds in the catalogue. Viewer and follower counts are live integers; broadcast start times are KST as the platform reports them. Keyless public source, nothing stored beyond a short cache.
api.oanor.com/chzzk-api
SOOP (AfreecaTV) Live Streaming API
Live data from SOOP (formerly AfreecaTV, sooplive.co.kr), South Korea's biggest live-streaming platform, read keyless from its public web API. SOOP is where Korea's "BJ" broadcasters stream games, talk, music and just-chatting to audiences that send star-balloon gifts in real time — the platform that defined Korean streaming culture, much bigger there than Twitch. This exposes who is broadcasting live right now, how many are watching, which categories are hot and each broadcaster's standing. The live endpoint lists the top broadcasts on air right now, ranked by current viewers, each with its BJ (broadcaster) name, title, viewer count, category and how long it has been live. The categories endpoint aggregates the top live broadcasts by category — the games and genres pulling the biggest audiences right now. The station endpoint returns one broadcaster's channel profile by their BJ id: follower count, the all-time views and visits their channel has drawn, when they joined, their total hours broadcast, their partner/best-BJ status and whether they are live now. This is the SOOP platform cut — a distinct social/streaming platform, separate from the Twitch, Kick, SHOWROOM, Bilibili and other feeds in the catalogue. Viewer and follower counts are live; nothing is stored beyond a short cache. Counts are integers; times are reported by the platform (KST).
api.oanor.com/soop-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Kick API?
What's the rate limit for Kick API?
How much does Kick API cost?
Can I cancel my subscription anytime?
Is Kick API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/kick-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/kick-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/kick-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/kick-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.