# Twitch Profile API (https://www.socialcrawl.dev/platforms/twitch/profile) > Returns public profile information for a Twitch streamer including display name, follower count, bio, profile image URL, broadcast language, and partner/affiliate status. TL;DR: `GET /v1/twitch/profile` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `handle` | yes | Twitch username | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/twitch/profile?handle=ninja" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get a Twitch streamer's profile with an API? Send a GET request to /v1/twitch/profile with the streamer's handle (no slashes or URL) in the handle parameter. SocialCrawl returns JSON with display name, follower count, bio, profile image URL, broadcast language, and partner/affiliate status. ### What fields does GET /v1/twitch/profile return? The response includes id, username, display_name, avatar_url, bio, profile URL, follower count, broadcast language, is_partner, is_affiliate, and account creation timestamp — all normalised into the same author schema used by every SocialCrawl platform. ### Can I scrape Twitch profiles without a Helix client ID? Yes. SocialCrawl does not require a registered Twitch developer application, client ID, client secret, or OAuth app access token. Pass the handle and your SocialCrawl x-api-key — the endpoint returns the public profile directly, with no Helix handshake. ### How much does the Twitch Profile API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required — enough to pull around 100 Twitch streamer profiles before you pay a cent, perfect for prototyping creator-discovery workflows. ### Does the endpoint return partner and affiliate status? Yes. The response includes both is_partner and is_affiliate flags so you can filter for Twitch Partners, Affiliates, or non-monetised channels. Useful for influencer outreach lists, sponsorship targeting, and creator-tier dashboards. See the full Twitch API: https://www.socialcrawl.dev/platforms/twitch ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get a Twitch streamer profile with one API call via SocialCrawl - What does the SocialCrawl Twitch Profile API return?