English
Retrieve channel information and status
curl --request GET \ --url "https://api.kick.com/public/v1/channels/streamername"
{ "channel": { "id": 12345, "user_id": 98765, "name": "streamername", "slug": "streamername", "verified": true, "followers_count": 50000, "banner_image": "https://kick-banners.s3.amazonaws.com/streamername.jpeg", "profile_image": "https://kick-profiles.s3.amazonaws.com/streamername.jpeg", "bio": "Professional streamer on Kick. Live daily with the best gaming content!", "is_live": true, "livestream": { "id": 987654, "title": "Friday Night Gaming Marathon!", "viewers": 12500, "thumbnail": "https://kick-livestreams.s3.amazonaws.com/streamername/thumbnail.jpeg", "category": { "id": 123, "name": "Just Chatting", "slug": "just-chatting", "icon": "https://kick-categories.s3.amazonaws.com/just-chatting.png" }, "created_at": "2023-05-12T19:30:00Z" } } }
Show Channel object
Show Livestream object (only present if is_live is true)
Show Category object
channels:read
Show Array of follower objects
Show Pagination object
curl --request GET \ --url "https://api.kick.com/public/v1/channels/streamername/followers?limit=10" \ --header "Authorization: Bearer {YOUR_TOKEN}"
{ "data": [ { "user_id": 12345, "username": "follower1", "display_name": "Follower One", "profile_picture": "https://kick-profiles.s3.amazonaws.com/follower1.jpeg", "followed_at": "2023-05-01T14:30:00Z" }, { "user_id": 23456, "username": "follower2", "display_name": "Follower Two", "profile_picture": "https://kick-profiles.s3.amazonaws.com/follower2.jpeg", "followed_at": "2023-05-01T13:45:00Z" }, { "user_id": 34567, "username": "follower3", "display_name": "Follower Three", "profile_picture": "https://kick-profiles.s3.amazonaws.com/follower3.jpeg", "followed_at": "2023-05-01T13:30:00Z" } ], "pagination": { "cursor": "eyJpZCI6MTIzNDUsImZvbGxvd2VkX2F0IjoiMjAyMy0wNS0wMVQxMzozMDowMFoifQ==", "has_more": true } }
Show Array of featured channel objects
Show Livestream object
curl --request GET \ --url "https://api.kick.com/public/v1/channels/featured?limit=3"
{ "featured_channels": [ { "channel": { "id": 12345, "name": "topstreamer", "slug": "topstreamer", "profile_image": "https://kick-profiles.s3.amazonaws.com/topstreamer.jpeg", "verified": true }, "livestream": { "id": 987654, "title": "Championship Tournament Finals!", "viewers": 75000, "thumbnail": "https://kick-livestreams.s3.amazonaws.com/topstreamer/thumbnail.jpeg", "category": { "id": 234, "name": "Fortnite" } }, "feature_position": 1 }, { "channel": { "id": 23456, "name": "esportspro", "slug": "esportspro", "profile_image": "https://kick-profiles.s3.amazonaws.com/esportspro.jpeg", "verified": true }, "livestream": { "id": 876543, "title": "Pro Gaming Challenge - Day 2", "viewers": 45000, "thumbnail": "https://kick-livestreams.s3.amazonaws.com/esportspro/thumbnail.jpeg", "category": { "id": 345, "name": "CS:GO" } }, "feature_position": 2 }, { "channel": { "id": 34567, "name": "creativestudio", "slug": "creativestudio", "profile_image": "https://kick-profiles.s3.amazonaws.com/creativestudio.jpeg", "verified": true }, "livestream": { "id": 765432, "title": "Art & Music Showcase", "viewers": 25000, "thumbnail": "https://kick-livestreams.s3.amazonaws.com/creativestudio/thumbnail.jpeg", "category": { "id": 456, "name": "Art" } }, "feature_position": 3 } ] }