# List Channel Shorts

Stream shorts from a channel's shorts tab.

- Platform: [YouTube](https://docs.upscrape.com/docs/platforms/youtube)
- Capability ID: `youtube.channel-shorts.list`
- Cost: 1 credit per request
- Maximum runtime: 120 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "limit": 5,
    "url": "https://www.youtube.com/@MrBeast"
  },
  "capability": "youtube.channel-shorts.list"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `limit` | `integer` | No | Maximum number of results to return. |
| `max_pages` | `integer` | No | Max pages supplied for this request. |
| `url` | `string` | Yes | Url supplied for this request. |

### Example input

```json
{
  "limit": 5,
  "url": "https://www.youtube.com/@MrBeast"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "items": [
    {
      "accessibility_text": "Paying For Food With My Car, 7.6 million views - play Short",
      "entity_id": "shorts-shelf-item-f7y2XikE7sY",
      "headline": "Paying For Food With My Car",
      "thumbnails": [
        {
          "height": 1920,
          "url": "https://i.ytimg.com/vi/f7y2XikE7sY/frame0.jpg",
          "width": 1080
        }
      ],
      "type": "short",
      "video_id": "f7y2XikE7sY",
      "views": "7.6 million views"
    },
    {
      "accessibility_text": "Read My Book, You Could Win $1,000,000, 10 million views - play Short",
      "entity_id": "shorts-shelf-item-Df5Y-2ndQyU",
      "headline": "Read My Book, You Could Win $1,000,000",
      "thumbnails": [
        {
          "height": 1920,
          "url": "https://i.ytimg.com/vi/Df5Y-2ndQyU/frame0.jpg",
          "width": 1080
        }
      ],
      "type": "short",
      "video_id": "Df5Y-2ndQyU",
      "views": "10 million views"
    },
    {
      "accessibility_text": "Don't Pop the Balloon, 94 million views - play Short",
      "entity_id": "shorts-shelf-item-egvLKQe6I4I",
      "headline": "Don't Pop the Balloon",
      "thumbnails": [
        {
          "height": 1920,
          "url": "https://i.ytimg.com/vi/egvLKQe6I4I/frame0.jpg",
          "width": 1080
        }
      ],
      "type": "short",
      "video_id": "egvLKQe6I4I",
      "views": "94 million views"
    }
  ],
  "summary": {
    "channel_id": "UCX6OQ3DkcsbYNE6H8uQQuVA",
    "pages": 1,
    "tab": "shorts",
    "total_items": 5
  }
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `items` | `array` | 3 items |
| `items` | `array` | 3 items |
| `summary` | `object` | 4 fields |
| `summary.channel_id` | `string` | UCX6OQ3DkcsbYNE6H8uQQuVA |
| `summary.pages` | `integer` | 1 |
| `summary.tab` | `string` | shorts |
| `summary.total_items` | `integer` | 5 |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
