# PayWeave YouTube Video Details API

> PayWeave YouTube Video Details API is a paid API for AI agents from youtube.payweave.services, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Fetches YouTube video metadata and details for a given YouTube video URL via a pay-per-call API

## Facts

- Endpoint: POST https://youtube.payweave.services/video
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-youtube-video-details-api-7a957681
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A8N87yjaCfFrQVYYVA6wj

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 payweave-youtube-video-details-api-7a957681 -d '<json body>'
```

Example prompt: Can you pull up the details for this YouTube video — title, description, channel, view count, and whatever else is available? The URL is https://www.youtube.com/watch?v=dQw4w9WgXcQ

## When to prefer this

Use this endpoint when you need to programmatically retrieve YouTube video metadata for a specific video URL without managing YouTube API keys or quota, especially in pay-per-use agent workflows where you only occasionally need video details and want simple per-call billing via x402/USDC.

## Known failure modes

- Invalid or malformed YouTube URL returns an error
- Private or deleted video returns no data or an error
- Video region-restricted content may return incomplete metadata
- Rate limits or upstream YouTube API issues may cause failures
- Missing videoUrl field in request body causes validation error

## How this service works

YouTube data — video search and video details.

## Output

Returns structured metadata about the YouTube video including title, description, channel information, view count, upload date, duration, and other available video details associated with the provided YouTube URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "videoUrl": {
   "type": "string",
   "pattern": "^https?://(www\\.|m\\.|music\\.)?(youtube\\.com|youtu\\.be)/.+",
   "description": "YouTube video URL, e.g. https://www.youtube.com/watch?v=XXXXXXXXXXX"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-youtube-video-details-api-7a957681/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from youtube.payweave.services](https://www.zero.xyz/host/youtube.payweave.services/llms.txt)
