# GEDX402 Social – YouTube Channel Videos

> GEDX402 Social – YouTube Channel Videos is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Retrieves a paginated list of videos from a YouTube channel by handle or channel ID, with optional sort ordering and pagination via continuation token.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/youtube/channel-videos
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-youtube-channel-videos-67a62176
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ED-1KZfcO2TUcDwKXGWxn

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 gedx402-social-youtube-channel-videos-67a62176
```

Example prompt: Pull the latest videos from the YouTube channel @mkbhd — sort them by newest first and give me the full list via SociaVault.

## When to prefer this

Use this endpoint when you need to programmatically retrieve the video catalog of a specific YouTube channel using either a @handle or channel ID, especially when you want sorted results or need to paginate through large channel histories. Prefer this over YouTube's official API when you want a pay-per-use model without API key management, or when building agents that need social data without OAuth complexity.

## Known failure modes

- Missing both handle and channelId returns an error or empty result
- Invalid or non-existent channel handle/ID returns empty data or error
- Expired or invalid continuationToken causes pagination failure
- Payment not fulfilled results in 402 response blocking data access
- Rate limiting or SociaVault upstream outage returns failure response

## How this service works

SociaVault social data ingest — profile, posts, transcript, and full API proxy. One x402 payment per outcome.

## Output

Returns a JSON object with a 'data' field containing video entries for the specified YouTube channel, a 'success' boolean, and 'provider' set to 'sociavault'. May include pagination via continuation token for large channels.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "type": "string"
  },
  "handle": {
   "type": "string"
  },
  "channelId": {
   "type": "string"
  },
  "continuationToken": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-social-youtube-channel-videos-67a62176/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
