How to get Twitch profile
GET request to /v1/twitch/profile with your input. You get clean JSON back in seconds for 1 credit per call — no OAuth, scraping or platform SDKs. Fetch Twitch profile — display name, bio, counts, and verification as structured JSON.How to get Twitch profile (step by step)
- 1
Get a free API key
Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.
- 2
Call the Twitch Profile API
Send an authenticated GET request to /v1/twitch/profile with your input. No OAuth, no scraping setup.
- 3
Read the JSON response
Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.
Code example
curl "https://api.captapi.com/v1/twitch/profile?url=https%3A%2F%2Fwww.twitch.tv%2Ftumblurr" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."What the response looks like
{
"success": true,
"data": {
"platform": "twitch",
"id": "77827128",
"login": "tumblurr",
"displayName": "Tumblurr",
"url": "https://www.twitch.tv/tumblurr",
"description": "Provo a portare una nuova visione di Cod qui in Italia,o almeno ci provo!",
"followers": 2022940,
"profileImage": "https://static-cdn.jtvnw.net/jtv_user_pictures/76689ba7-8a3a-4369-bb9b-6ec7c54e4648-profile_image-300x300.png",
"bannerImage": "https://static-cdn.jtvnw.net/jtv_user_pictures/47842519-790a-4de0-93c7-69410e82768e-profile_banner-480.jpeg",
"isPartner": true,
"isAffiliate": false,
"isLive": true,
"stream": {
"title": "🏆⚽KINGS WORLD CUP CLUBS|❌LOOSERS BRACKET🔥ORE 20➡️AVVERSARIO STALLIONS😱 4ª GIORNATA !badge !tr",
"game": "Kings League",
"viewers": 59767,
"startedAt": "2026-07-29T16:14:47Z",
"thumbnail": "https://static-cdn.jtvnw.net/previews-ttv/live_user_tumblurr-640x360.jpg"
},
"lastBroadcast": {
"title": "🏆⚽KINGS WORLD CUP CLUBS|❌LOOSERS BRACKET🔥ORE 20➡️AVVERSARIO STALLIONS😱 4ª GIORNATA !badge !tr",
"game": "Kings League",
"startedAt": "2026-07-29T16:14:56.358315Z"
},
"recentVideos": [
{
"platform": "twitch",
"id": "2832011409",
"url": "https://www.twitch.tv/videos/2832011409",
"embedUrl": "https://player.twitch.tv/?video=2832011409&parent=captapi.com",
"title": "🏆⚽KINGS WORLD CUP CLUBS|❌LOOSERS BRACKET🔥ORE 20➡️AVVERSARIO STALLIONS😱 4ª GIORNATA !badge !tr",
"createdAt": "2026-07-29T16:14:57Z",
"durationSeconds": 14258,
"views": 1672,
"thumbnail": "https://vod-secure.twitch.tv/_404/404_processing_{width}x{height}.png",
"game": "Kings League",
"language": "it",
"broadcaster": "tumblurr",
"broadcasterProfileImage": "https://static-cdn.jtvnw.net/jtv_user_pictures/76689ba7-8a3a-4369-bb9b-6ec7c54e4648-profile_image-300x300.png"
},
{
"platform": "twitch",
"id": "2831183728",
"url": "https://www.twitch.tv/videos/2831183728",
"embedUrl": "https://player.twitch.tv/?video=2831183728&parent=captapi.com",
"title": "🏆⚽KINGS WORLD CUP CLUBS|💥OGGI TUTTE ITALIANE 🐎STALLIONS vs MOSTOLES🦁⚔️ ORE 22|1ª PARTITA !badge",
"createdAt": "2026-07-28T16:11:53Z",
"durationSeconds": 18910,
"views": 1434647,
"thumbnail": "https://static-cdn.jtvnw.net/cf_vods/d3fi1amfgojobc/5121ead9cf32c7f5b5e2_tumblurr_317915046759_1785255107//thumb/thumb0-{width}x{height}.jpg",
"game": "Kings League",
"language": "it",
"broadcaster": "tumblurr",
"broadcasterProfileImage": "https://static-cdn.jtvnw.net/jtv_user_pictures/76689ba7-8a3a-4369-bb9b-6ec7c54e4648-profile_image-300x300.png"
},
{
"platform": "twitch",
"id": "2830378103",
"url": "https://www.twitch.tv/videos/2830378103",
"embedUrl": "https://player.twitch.tv/?video=2830378103&parent=captapi.com",
"title": "🏆⚽KINGS WORLD CUP CLUBS|OGGI 😤UNDERDOGS E PORCINOS🤣🐖|2ª PARTITA !badge",
"createdAt": "2026-07-27T16:11:08Z",
"durationSeconds": 19164,
"views": 613127,
"thumbnail": "https://static-cdn.jtvnw.net/cf_vods/d3fi1amfgojobc/ac8007998bb93a61d517_tumblurr_317904429031_1785168662//thumb/thumb0-{width}x{height}.jpg",
"game": "Kings League",
"language": "it",
"broadcaster": "tumblurr",
"broadcasterProfileImage": "https://static-cdn.jtvnw.net/jtv_user_pictures/76689ba7-8a3a-4369-bb9b-6ec7c54e4648-profile_image-300x300.png"
}
],
"topClips": [],
"schedule": [],
"createdAt": "2014-12-23T20:20:00.148185Z"
}
}Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.
Request parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | Twitch channel URL or username, e.g. https://www.twitch.tv/shroud. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble. |
| cache | boolean | No | Set true to serve from the 24h response cache. Default false — always fetch fresh data. |
Frequently asked questions
What does the Twitch Profile API do?
The Twitch Profile API lets you fetch profile or page details and audience stats from a public Twitch profile or page using one GET request to /v1/twitch/profile. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the Twitch Profile API cost?
Each successful call costs 1 credit. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Failed or empty results are never charged.
Do I need a Twitch API key or OAuth?
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.
Is the Twitch Profile API suitable for production use?
Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h shared cache (0 credits on hit); default is always fresh. Use it for analytics, monitoring, and content automation.
Ready to get Twitch profile?
Start free with 100 credits — no credit card required.
Get your free API key