# Twitch Clip Scraper (`nifty.codes/twitch-clips-scraper`) Actor

Extract Twitch clips including view counts, durations, and broadcaster metadata from channel and browse pages. Powered by Twitch Scraper.

- **URL**: https://apify.com/nifty.codes/twitch-clips-scraper.md
- **Developed by:** [Nifty](https://apify.com/nifty.codes) (community)
- **Categories:** Social media
- **Stats:** 1 total users, 0 monthly users, 80.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Twitch Clip Scraper

This actor extracts Clips in a List from Twitch. It captures metadata from channel clip galleries and the global browse page. The data includes engagement metrics, broadcaster information, and game details.

#### Data Fields

| Field Name | Description | Example |
| --- | --- | --- |
| Title | The name of the clip | "Insane 1v4 Clutch" |
| Duration Seconds | Length of the clip in seconds | 30 |
| View Count | Total views at time of scrape | 15400 |
| Language | Language code of the stream | "en" |
| Created At | ISO timestamp of creation | "2023-10-27T10:00:00Z" |
| Slug | Unique identifier for the clip | "AmazingPlayByProPlayer" |
| URL | Direct link to the clip page | "https://twitch.tv/clip/AmazingPlayByProPlayer" |
| Embed URL | URL for iframe embedding | "https://clips.twitch.tv/embed?clip=AmazingPlayByProPlayer" |
| Thumbnail URL | Image link for the clip preview | "https://static-cdn.jtvnw.net/thumbnails/1.jpg" |
| Is Featured | If the clip is highlighted | true |
| Curator ID | ID of the user who made the clip | "987654" |
| Curator Login | Username of the clipper | "clip_master" |
| Curator Display Name | Display name of the clipper | "ClipMaster" |
| Broadcaster ID | ID of the channel owner | "123456" |
| Broadcaster Login | Username of the channel owner | "streamer_pro" |
| Broadcaster Display Name | Display name of the channel owner | "StreamerPro" |
| Broadcaster Profile Image URL | URL to the channel avatar | "https://static-cdn.jtvnw.net/profile/1.png" |
| Broadcaster Primary Color | Hex code of channel color | "#9146FF" |
| Is Partner | If the broadcaster is a partner | true |
| Game ID | ID of the game being played | "509658" |
| Game Slug | URL slug for the game | "just-chatting" |
| Game Name | Name of the game | "Just Chatting" |
| Game Box Art URL | URL to the game cover art | "https://static-cdn.jtvnw.net/boxart/1.jpg" |

#### Input

- `urls`: Array of Twitch URLs. Supports channel clips pages and the browse clips page.
- `maxItems`: Maximum number of clips to extract per URL. Default is 100.

#### Example Input

```json
{
  "urls": ["https://www.twitch.tv/twitch/clips?filter=clips&range=7d"],
  "maxItems": 50
}
````

#### Example Output

```json
[
  {
    "Title": "Top Play of the Week",
    "Duration Seconds": 60,
    "View Count": 5000,
    "Language": "en",
    "Created At": "2023-11-01T12:00:00Z",
    "Slug": "TopPlayWeekOne",
    "URL": "https://twitch.tv/clip/TopPlayWeekOne",
    "Embed URL": "https://clips.twitch.tv/embed?clip=TopPlayWeekOne",
    "Thumbnail URL": "https://static-cdn.jtvnw.net/thumbnails/clip1.jpg",
    "Is Featured": false,
    "Curator ID": "111",
    "Curator Login": "fan_user",
    "Curator Display Name": "FanUser",
    "Broadcaster ID": "222",
    "Broadcaster Login": "pro_gamer",
    "Broadcaster Display Name": "ProGamer",
    "Broadcaster Profile Image URL": "https://static-cdn.jtvnw.net/profile/pro.png",
    "Broadcaster Primary Color": "#00FF00",
    "Is Partner": true,
    "Game ID": "21779",
    "Game Slug": "league-of-legends",
    "Game Name": "League of Legends",
    "Game Box Art URL": "https://static-cdn.jtvnw.net/boxart/lol.jpg"
  },
  {
    "Title": "Funny Moment",
    "Duration Seconds": 15,
    "View Count": 1200,
    "Language": "es",
    "Created At": "2023-11-02T15:30:00Z",
    "Slug": "FunnyMomentEs",
    "URL": "https://twitch.tv/clip/FunnyMomentEs",
    "Embed URL": "https://clips.twitch.tv/embed?clip=FunnyMomentEs",
    "Thumbnail URL": "https://static-cdn.jtvnw.net/thumbnails/clip2.jpg",
    "Is Featured": true,
    "Curator ID": "333",
    "Curator Login": "mod_user",
    "Curator Display Name": "ModUser",
    "Broadcaster ID": "444",
    "Broadcaster Login": "variety_streamer",
    "Broadcaster Display Name": "VarietyStreamer",
    "Broadcaster Profile Image URL": "https://static-cdn.jtvnw.net/profile/variety.png",
    "Broadcaster Primary Color": "#FF0000",
    "Is Partner": false,
    "Game ID": "33214",
    "Game Slug": "fortnite",
    "Game Name": "Fortnite",
    "Game Box Art URL": "https://static-cdn.jtvnw.net/boxart/fortnite.jpg"
  }
]
```

#### Want more from Twitch?

This actor only covers **Clips in a List**. The full **Twitch Scraper** browser extension also includes **Messages in a Chat, Channels in a List, Channels in a Search, Videos in a List, Channel Details** with unlimited personal use, real-time scraping with your logged-in sessions, CSV/Excel/JSON export, field customization, and scheduled monitoring.

**[Get the Twitch Scraper extension](https://nifty.codes/e/twitch-scraper)**

#### Disclaimer

This tool extracts publicly available data. Users are responsible for compliance with applicable terms of service.

# Actor input Schema

## `urls` (type: `array`):

URLs to scrape. Must match: twitch.tv

## `maxItems` (type: `integer`):

Maximum number of items to extract per URL

## `enablePagination` (type: `boolean`):

Load more results beyond the first page. Note: pagination may be unstable for this actor.

## `maxPages` (type: `integer`):

Maximum number of pagination actions (pages, scrolls, or loads)

## Actor input object example

```json
{
  "urls": [
    "https://www.twitch.tv/jynxzi/clips?filter=clips&range=7d"
  ],
  "maxItems": 100,
  "enablePagination": false,
  "maxPages": 1
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("nifty.codes/twitch-clips-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("nifty.codes/twitch-clips-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call nifty.codes/twitch-clips-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nifty.codes/twitch-clips-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Twitch Clip Scraper",
        "description": "Extract Twitch clips including view counts, durations, and broadcaster metadata from channel and browse pages. Powered by Twitch Scraper.",
        "version": "3.2",
        "x-build-id": "A5EGKJSriB91vCjkq"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nifty.codes~twitch-clips-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nifty.codes-twitch-clips-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/nifty.codes~twitch-clips-scraper/runs": {
            "post": {
                "operationId": "runs-sync-nifty.codes-twitch-clips-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/nifty.codes~twitch-clips-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-nifty.codes-twitch-clips-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "urls"
                ],
                "properties": {
                    "urls": {
                        "title": "URLs",
                        "type": "array",
                        "description": "URLs to scrape. Must match: twitch.tv",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "https://www.twitch.tv/jynxzi/clips?filter=clips&range=7d"
                        ]
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of items to extract per URL",
                        "default": 100
                    },
                    "enablePagination": {
                        "title": "Paginate",
                        "type": "boolean",
                        "description": "Load more results beyond the first page. Note: pagination may be unstable for this actor.",
                        "default": false
                    },
                    "maxPages": {
                        "title": "Max pagination steps",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of pagination actions (pages, scrolls, or loads)",
                        "default": 1
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
