# SocialFetch YouTube Channel Long-Form Videos List

> SocialFetch YouTube Channel Long-Form Videos List 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-14).

Lists long-form videos (excluding Shorts) from a YouTube channel by channel ID or handle, with optional sorting and enriched metadata.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/youtube/channels/videos
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-youtube-channel-long-form-videos-list-7b65bf95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j2xf_1EN93ozCEAo8peJ8

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-youtube-channel-long-form-videos-list-7b65bf95
```

Example prompt: Can you pull up the latest long-form videos from the MrBeast YouTube channel — sort them by most recent and include the extra metadata like view counts and descriptions?

## When to prefer this

Use this endpoint when you need to enumerate or paginate through long-form video content from a specific YouTube channel and want to exclude Shorts. Prefer this over scraping YouTube directly or using the YouTube Data API when you want a simple paid-per-call REST interface without OAuth. If you need Shorts specifically, use the sibling youtube.channel.shorts.list endpoint instead.

## Known failure modes

- Neither channelId nor handle provided — request fails with missing parameter error
- Invalid or non-existent channel ID returns empty list or 404-equivalent
- Expired or invalid pagination cursor returns error
- Rate limit exceeded returns 429-equivalent response
- Channel with no long-form videos returns empty list

## How this service works

List long-form videos from a YouTube channel (not Shorts — use youtube.channel.shorts.list).

## Output

A paginated list of long-form YouTube videos (no Shorts) from the specified channel, each with metadata such as title, video ID, upload date, view count, and optionally richer per-video details. Also includes an opaque cursor for fetching the next page.

## 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",
     "properties": {
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor returned by a previous response."
      },
      "handle": {
       "type": "string",
       "description": "Optional YouTube channel handle for the request."
      },
      "sortBy": {
       "enum": [
        "latest",
        "popular"
       ],
       "type": "string",
       "description": "Optional sort order for the returned YouTube videos."
      },
      "channelId": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Optional YouTube channel id for the request."
      },
      "includeExtras": {
       "type": "boolean",
       "description": "Optional flag to include richer per-video metadata when available."
      }
     }
    }
   },
   "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-youtube-channel-long-form-videos-list-7b65bf95/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)
