API Reference

Kick endpoints

Channel and clip metrics, including live status and current viewer count.

All 2 endpoints below take a single url parameter and return the same field vocabulary used across every platform. A full object costs 2 credits; a single field costs 1.
GET /api/v1/kick/channel
2 credits cache 1m

Kick channel

Follower count and live status for a Kick channel, plus current viewers and stream title when live.

Parameters

url required
Example: https://kick.com/username
field optional
Return a single value for 1 credit instead of 2.

Fields

slug · channelId · userId · name · followers · verified · viewers · live · streamTitle

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/kick/channel?url=https%3A%2F%2Fkick.com%2Fusername"
GET /api/v1/kick/clip
2 credits cache 1m

Kick clip

View and like counts for a Kick clip.

Parameters

url required
Example: https://kick.com/username/clips/CLIP_ID
field optional
Return a single value for 1 credit instead of 2.

Fields

clipId · title · views · likes · channelId · clippedByUserId · durationMs

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/kick/clip?url=https%3A%2F%2Fkick.com%2Fusername%2Fclips%2FCLIP_ID"