Kick Clip Scraper
Retrieve public Kick clip metadata, playback, engagement, category, creator, and channel details from a clip URL.
Workspace
Configure
Inputs stay here while results become exportable artifacts.
Start from an example
Results
Preview, inspect, copy, or export the complete output.
Your result will become an artifact
Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.
Overview
Kick Clip Scraper resolves a public clip URL through Better Fetch's resilient retrieval path and returns normalized playback, engagement, category, creator, and channel metadata for agents, monitoring systems, research pipelines, and creator-analysis workflows.
Last validated: Jul 15, 2026
Input
urlstringrequiredFull public Kick clip URL or clip_ identifier.
Output
idstringrequiredKick clip id
urlstringrequiredInput clip URL
titlestringClip title
channelobjectSource channel
channel.idnumberChannel id
channel.slugstringChannel slug
channel.usernamestringChannel username
channel.profile_picturestringChannel profile picture URL
creatorobjectClip creator
creator.idnumberCreator id
creator.slugstringCreator slug
creator.usernamestringCreator username
creator.profile_picturestringCreator profile picture URL
privacystringKick privacy status
categoryobjectKick content category
category.idnumberCategory id
category.namestringCategory name
category.slugstringCategory slug
category.bannerstringCategory banner URL
category.parent_categorystringParent category
durationnumberClip duration in seconds
is_maturebooleanWhether Kick marks the clip mature
video_urlstringPublic clip playback URL
created_atstringClip creation timestamp
started_atstringSource stream timestamp
view_countnumberPublic view count
likes_countnumberPublic likes count
thumbnail_urlstringClip thumbnail URL
Examples
public-clip
{
"url": "https://kick.com/xqc/clips/clip_01JGJHB6CEVFCQRYTVPM8DW892"
}Use cases
FAQ
Does it need a Kick login?
No. It retrieves only metadata Kick exposes publicly for the requested clip.
Can I pass a clip id?
Yes. Pass either the full public Kick clip URL or its clip_ identifier.
Does it download the video?
No. It returns the public playback URL and metadata.
Use it anywhere
MCP (Claude, ChatGPT, Codex)
# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "Kick Clip Scraper"
2. Call run_tool with:
name: "kick_scraper"
input: {"url":"https://kick.com/xqc/clips/clip_01JGJHB6CEVFCQRYTVPM8DW892"}REST
curl -sS -X POST "https://betterfetch.co/api/tools/kick_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"url":"https://kick.com/xqc/clips/clip_01JGJHB6CEVFCQRYTVPM8DW892"}}'Run locally
git clone https://github.com/better-fetch/tools/tree/main/tools/kick-scraper && cd kick-scraper && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"url":"https://kick.com/xqc/clips/clip_01JGJHB6CEVFCQRYTVPM8DW892"}'