## twitch/clip

`GET /v1/twitch/clip`

Fetch a single Twitch clip from its URL: title, broadcaster, creator, game, duration, view count and thumbnail.

*Twitch clip*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Twitch clip URL (clips.twitch.tv/<slug>, twitch.tv/<channel>/clip/<slug>) or a bare clip slug — e.g. `https://clips.twitch.tv/CloudySavageMarjoramRuleFive--ErzsYbE7UWvgCMQ` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/twitch/clip?url=https%3A%2F%2Fclips.twitch.tv%2FCloudySavageMarjoramRuleFive--ErzsYbE7UWvgCMQ" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "broadcaster": {
    "id": "example",
    "name": "example"
  },
  "created_at": "2026-09-01T12:00:00Z",
  "creator": {
    "id": "example",
    "name": "example"
  },
  "duration_seconds": 0,
  "embed_url": "https://example.com/example",
  "game_id": "example",
  "id": "example",
  "is_featured": false,
  "language": "example",
  "thumbnail_url": "https://example.com/example",
  "title": "example",
  "url": "https://example.com/example",
  "view_count": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/twitch/clip#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/twitch/clip.json)
