# Twitch Clip API (https://www.socialcrawl.dev/platforms/twitch/clip) > Returns detailed information about a specific Twitch clip including the title, view count, duration, creator name, broadcaster name, game name, thumbnail URL, and creation timestamp. TL;DR: `GET /v1/twitch/clip` 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 | | --- | --- | --- | | `url` | yes | Full URL of the Twitch clip | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/twitch/clip?url=https%3A%2F%2Fwww.twitch.tv%2Fninja%2Fclip%2FExampleClipSlug" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get Twitch clip details with an API? Send a GET request to /v1/twitch/clip with the full Twitch clip URL in the url parameter. SocialCrawl returns the clip title, view count, duration, creator name, broadcaster name, game name, thumbnail URL, and creation timestamp in one JSON payload. ### What fields does the Twitch Clip API return? The response includes clip id, slug, title, view_count, duration, thumbnail_url, created_at, broadcaster (name and id), creator (the clipper), game name, and source video URL. Engagement lives under the unified post.engagement object for cross-platform parity. ### Can I pull top clips for a streamer or game? The clip endpoint fetches one clip by URL. Pair it with the profile endpoint to build your own streamer dashboards, or feed a list of clip URLs from an external source (Twitch trending pages, Discord alerts, analytics tools) through this endpoint in a loop. ### How much does the Twitch Clip API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required — enough to test 100 clip URLs end-to-end and validate the response schema before you ever add a payment method to your account. ### Is the Twitch clip thumbnail URL direct-usable? Yes. The thumbnail_url is a public Twitch-hosted image link you can embed directly in thumbnails, carousels, or Open Graph tags. Videos include duration and view count so you can rank clips by engagement for recap feeds or highlight reels. 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 fetch a Twitch clip's details with the SocialCrawl API - What does the SocialCrawl Twitch Clip API return?