## kick/clip

`GET /v1/kick/clip`

One clip: title, video and thumbnail URLs, duration, views, likes, times, category, creator and channel.

*Kick clip*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Clip URL — e.g. `https://kick.com/xqc/clips/clip_01JGJHB6CEVFCQRYTVPM8DW892` |
| `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/kick/clip?url=https%3A%2F%2Fkick.com%2Fxqc%2Fclips%2Fclip_01JGJHB6CEVFCQRYTVPM8DW892" \
  -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
{
  "category": {
    "name": "example",
    "slug": "example"
  },
  "channel": {
    "avatar_url": "https://example.com/example",
    "handle": "example"
  },
  "created_at": "2026-09-01T12:00:00Z",
  "creator": {
    "handle": "example"
  },
  "duration_s": 0,
  "id": "example",
  "is_mature": false,
  "likes": 0,
  "platform": "example",
  "started_at": "2026-09-01T12:00:00Z",
  "thumbnail_url": "https://example.com/example",
  "title": "example",
  "url": "https://example.com/example",
  "video_url": "https://example.com/example",
  "views": 0
}
```

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