# SocialFetch Twitch Clip Metadata

> SocialFetch Twitch Clip Metadata is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Retrieves metadata and playback URLs for a Twitch clip given its URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/twitch/clips
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-twitch-clip-metadata-ab565971
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h9JpgsWmmO8d1x-fb2mMX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-twitch-clip-metadata-ab565971
```

Example prompt: Can you pull the metadata and playback URL for this Twitch clip? https://www.twitch.tv/clip/ExampleClipSlug123

## When to prefer this

Use this endpoint when you have a Twitch clip URL and need to extract metadata or a direct playback link without using the official Twitch API or OAuth credentials. Ideal for agents that need to embed, summarize, or display Twitch clips programmatically.

## Known failure modes

- Invalid or malformed Twitch clip URL returns an error
- Clip has been deleted or made private — returns not found
- Twitch API rate limiting or downstream unavailability causes failure
- URL points to a non-clip Twitch page (e.g. channel, VOD) and is unsupported

## How this service works

Get metadata and playback URLs for a Twitch clip by URL.

## Output

Returns metadata for the Twitch clip including title, creator, game/category, thumbnail image, view count, duration, and one or more direct playback URLs for the video.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Link to the Twitch clip."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-twitch-clip-metadata-ab565971/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
