# GEDX402 Social – YouTube Channel Playlists

> GEDX402 Social – YouTube Channel Playlists 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-14).

Fetches the list of playlists for a YouTube channel by handle or channel ID, via the SociaVault proxy, with a single x402 micropayment per call.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/youtube/channel/playlists
- 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/gedx402-social-youtube-channel-playlists-ba6bc6de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E9YyEKf1Qxoxda5eWfohF

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-playlists-ba6bc6de
```

Example prompt: Can you pull up all the playlists for the YouTube channel with handle @mkbhd using SociaVault?

## When to prefer this

Use this endpoint when you need to programmatically list playlists for a YouTube channel and want to pay per-call via x402 micropayments without managing API keys. Ideal for agents that need lightweight, on-demand YouTube metadata without subscribing to the YouTube Data API directly.

## Known failure modes

- Invalid or missing channel handle and channel ID — API returns error or empty data
- Unknown or private YouTube channel — data field may be empty or null
- Invalid continuation token — pagination fails or resets
- x402 payment failure — endpoint returns 402 before data is delivered
- Rate limiting by underlying SociaVault provider — intermittent failures

## How this service works

SociaVault API proxy — youtube-channel-playlists. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

A JSON object with a 'data' field containing the channel's playlists (names, IDs, metadata), a 'success' boolean, and a 'provider' field set to 'sociavault'. If the result is paginated, a continuation token is included for fetching the next page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "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-playlists-ba6bc6de/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)
