Skip to content

Profile

GET /v1/twitch/profile

Retrieves a Twitch user's public profile by handle, including identity, social links, and content. Returns id, handle, displayName, description, followers count, and linked social accounts (instagram, x, tiktok). Also includes allVideos with game info, duration, and view counts, featuredClips with clip metadata and thumbnails, and similarStreamers.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
handlestringyesTwitch handleishowspeed

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/twitch/profile?handle=ishowspeed' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ handle: 'ishowspeed' });
const res = await fetch(`https://api.scrapecreators.com/v1/twitch/profile?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/twitch/profile',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'handle': 'ishowspeed'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators twitch profile --help

Example Response

json
{
  "success": true,
  "credits_remaining": 49998398635,
  "id": "220476955",
  "isLive": true,
  "currentViewersCount": 6293,
  "handle": "ishowspeed",
  "stream": {},
  "displayName": "IShowSpeed",
  "profileImageURL": "https://static-cdn.jtvnw.net/jtv_user_pictures/46a38d3a-a39c-4c43-ac12-c331b1c469c2-profile_image-150x150.png",
  "bannerImageURL": "https://static-cdn.jtvnw.net/jtv_user_pictures/983dc814-a78c-4e5a-9d22-e6e7595c76e1-profile_banner-480.png",
  "description": "YouTube:IShowSpeed Instagram:IShowSpeed: Snapchat:wishowspeed Twitter: ishowspeedsui I luv y’all🐐💕",
  "followers": 3830874,
  "isPartner": true,
  "recentBroadcasts": [
    {
      "id": "2761014301",
      "title": "BALLER LEAGUE WEEK 7 ⚽️ SPEED UTD VS FOR THE WIN FC 🔥",
      "previewThumbnailURL": "https://vod-secure.twitch.tv/_404/404_processing_320x180.png",
      "publishedAt": "2026-04-30T21:38:06Z",
      "viewCount": 702,
      "lengthSeconds": 13895,
      "animatedPreviewURL": "https://d2vi6trrdongqn.cloudfront.net/1dfa1f8c049eaa77fe54_ishowspeed_318481977952_1777585080/storyboards/2761014301-strip-0.jpg",
      "resourceRestriction": null,
      "contentTags": [],
      "self": {
        "isRestricted": false,
        "viewingHistory": null,
        "__typename": "VideoSelfEdge"
      },
      "game": {
        "id": "423594505",
        "slug": "baller-league",
        "boxArtURL": "https://static-cdn.jtvnw.net/ttv-boxart/423594505-40x56.jpg",
        "displayName": "Baller League",
        "name": "Baller League",
        "__typename": "Game"
      },
      "owner": {
        "id": "220476955",
        "displayName": "IShowSpeed",
        "login": "ishowspeed",
        "profileImageURL": "https://static-cdn.jtvnw.net/jtv_user_pictures/46a38d3a-a39c-4c43-ac12-c331b1c469c2-profile_image-50x50.png",
        "primaryColorHex": "FF4747",
        "__typename": "User"
      },
      "__typename": "Video"
    }
  ],
  "allVideos": [
    {
      "animatedPreviewURL": "https://d2vi6trrdongqn.cloudfront.net/1dfa1f8c049eaa77fe54_ishowspeed_318481977952_1777585080/storyboards/2761014301-strip-0.jpg",
      "game": {
        "boxArtURL": "https://static-cdn.jtvnw.net/ttv-boxart/423594505-40x56.jpg",
        "id": "423594505",
        "slug": "baller-league",
        "displayName": "Baller League",
        "name": "Baller League",
        "__typename": "Game"
      },
      "id": "2761014301",
      "lengthSeconds": 13895,
      "owner": {
        "displayName": "IShowSpeed",
        "id": "220476955",
        "login": "ishowspeed",
        "profileImageURL": "https://static-cdn.jtvnw.net/jtv_user_pictures/46a38d3a-a39c-4c43-ac12-c331b1c469c2-profile_image-50x50.png",
        "primaryColorHex": "FF4747",
        "roles": {
          "isPartner": true,
          "__typename": "UserRoles"
        },
        "__typename": "User"
      },
      "previewThumbnailURL": "https://vod-secure.twitch.tv/_404/404_processing_320x180.png",
      "publishedAt": "2026-04-30T21:38:06Z",
   
... (truncated)

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.