Get a Kick clip
curl --request GET \
--url https://api.scraperize.com/v1/kick/clip \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/kick/clip"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/kick/clip', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/kick/clip",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/kick/clip"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/kick/clip")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/kick/clip")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"clip": {
"id": "clip_01M1G0VANEMPRXHA6HP6K750QM",
"title": "xpocjz",
"url": "https://kick.com/asmongold/clips/clip_01M1G0VANEMPRXHA6HP6K750QM",
"privacy": "public",
"isMature": false,
"durationSeconds": 61,
"views": 21404,
"likes": 0,
"thumbnailUrl": "https://clips.kick.com/clips/83/clip_01M1G0VANEMPRXHA6HP6K750QM/thumbnail.webp",
"videoUrl": "https://clips.kick.com/clips/83/clip_01M1G0VANEMPRXHA6HP6K750QM/playlist.m3u8",
"createdAt": "2026-09-02T03:01:29.718101Z",
"startedAt": "2026-09-01T18:21:25Z",
"vodStartsAt": 758,
"livestreamId": "125160739",
"vodId": "434b56d8-6b45-48d7-a0bc-e5f9bc485ed0",
"category": {
"id": 15,
"name": "Just Chatting",
"slug": "just-chatting",
"parentCategory": "irl",
"imageUrl": "https://files.kick.com/images/subcategories/15/banner/b697a8a3-62db-4779-aa76-e4e47662af97"
},
"channel": {
"id": 13809,
"username": "asmongold",
"slug": "asmongold",
"profilePicture": "https://files.kick.com/images/user/13928/profile_image/conversion/0115ff28-1ec9-4e1f-a007-1108fc839bde-thumb.webp"
},
"creator": {
"id": 2220141,
"username": "etro",
"slug": "etro",
"profilePicture": null
}
},
"fetchedAt": "2026-09-14T12:14:51.803Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Kick
Get a Kick clip
Fetches a public Kick clip by URL: title, view/like counts, duration, thumbnail + HLS video URL, the source stream/VOD reference, the category, the channel (streamer), and the creator who made the clip.
GET
/
v1
/
kick
/
clip
Get a Kick clip
curl --request GET \
--url https://api.scraperize.com/v1/kick/clip \
--header 'x-api-key: <api-key>'import requests
url = "https://api.scraperize.com/v1/kick/clip"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.scraperize.com/v1/kick/clip', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.scraperize.com/v1/kick/clip",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.scraperize.com/v1/kick/clip"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.scraperize.com/v1/kick/clip")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.scraperize.com/v1/kick/clip")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"clip": {
"id": "clip_01M1G0VANEMPRXHA6HP6K750QM",
"title": "xpocjz",
"url": "https://kick.com/asmongold/clips/clip_01M1G0VANEMPRXHA6HP6K750QM",
"privacy": "public",
"isMature": false,
"durationSeconds": 61,
"views": 21404,
"likes": 0,
"thumbnailUrl": "https://clips.kick.com/clips/83/clip_01M1G0VANEMPRXHA6HP6K750QM/thumbnail.webp",
"videoUrl": "https://clips.kick.com/clips/83/clip_01M1G0VANEMPRXHA6HP6K750QM/playlist.m3u8",
"createdAt": "2026-09-02T03:01:29.718101Z",
"startedAt": "2026-09-01T18:21:25Z",
"vodStartsAt": 758,
"livestreamId": "125160739",
"vodId": "434b56d8-6b45-48d7-a0bc-e5f9bc485ed0",
"category": {
"id": 15,
"name": "Just Chatting",
"slug": "just-chatting",
"parentCategory": "irl",
"imageUrl": "https://files.kick.com/images/subcategories/15/banner/b697a8a3-62db-4779-aa76-e4e47662af97"
},
"channel": {
"id": 13809,
"username": "asmongold",
"slug": "asmongold",
"profilePicture": "https://files.kick.com/images/user/13928/profile_image/conversion/0115ff28-1ec9-4e1f-a007-1108fc839bde-thumb.webp"
},
"creator": {
"id": 2220141,
"username": "etro",
"slug": "etro",
"profilePicture": null
}
},
"fetchedAt": "2026-09-14T12:14:51.803Z"
},
"meta": {
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"creditsCharged": 1,
"creditsRemaining": 4999,
"cached": false
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "API key required — pass it in the `x-api-key` header.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "INSUFFICIENT_CREDITS",
"message": "This request costs 1 credit, but your balance is 0. Top up to continue.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The requested content was not found (it may not exist, be deleted, or be private).",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Request validation failed",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f",
"details": [
{
"path": "url",
"message": "Required"
}
]
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded — max 100 requests per 60s. Retry in ~30s.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}{
"error": {
"code": "UPSTREAM_BLOCKED",
"message": "The source was temporarily unavailable. Please try again shortly.",
"requestId": "req_8f0c2b7e-1a2b-4c3d-9e8f-0a1b2c3d4e5f"
}
}Authorizations
Your API key. Send it in the x-api-key header (or Authorization: Bearer <key>). Create and manage keys from your dashboard.
Query Parameters
Kick clip URL, e.g. https://kick.com/asmongold/clips/clip_01M1G0VANEMPRXHA6HP6K750QM.
Optional. Return a cached result if one this age or newer exists — served for 0 credits with meta.cached=true and meta.cachedAt. Otherwise a fresh scrape runs (1 credit) and refreshes the cache. Omit to always scrape fresh.
Available options:
1d, 3d, 7d, 14d, 30d