# x402vid Live Monitor — YouTube Live Stream Tracker

> x402vid Live Monitor — YouTube Live Stream Tracker is a paid API for AI agents from x402vid.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Monitors YouTube in real-time for live and upcoming streams matching a given keyword topic, returning current live videos and scheduled premieres.

## Facts

- Endpoint: POST https://x402vid.com/tools/live_monitor
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402vid-live-monitor-youtube-live-stream-tracker-0919336a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z7NXnXi2WvfWFUJINRS7B

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 x402vid-live-monitor-youtube-live-stream-tracker-0919336a -d '<json body>'
```

Example prompt: Find me all YouTube streams that are live right now about 'bitcoin' in the US, and also include any upcoming scheduled premieres — show up to 12 results.

## When to prefer this

Use this endpoint when you need real-time visibility into what is currently live or soon-to-premiere on YouTube for a specific keyword — ideal for event monitoring, breaking news tracking, or brand/topic surveillance. Prefer this over static video search endpoints when recency and live status are critical.

## Known failure modes

- Missing required 'topic' field returns a 400 validation error
- Invalid or unsupported region code may return no results or an error
- num_videos exceeding max of 15 may be clamped or rejected
- No live streams found for an obscure topic returns empty live_now and upcoming arrays
- Payment failure via x402/USDC results in 402 response blocking the call

## How this service works

x402vid — endpoint discovery for YouTube intelligence: pay-per-call micropayment API catalog via x402 on Base. Muse Spark 1.3 video intelligence, API catalog: 21 total tools (15 paid +6 free), pay per call USDC from $0.01. Free discovery: GET /api/v1/catalog, GET /api/v1/models, GET /api/v1/trending/top, video_preview. No subscriptions.

## Output

Returns a JSON object with a 'brief' summary object, the monitored 'topic' string, a 'live_now' array of currently active YouTube streams matching the keyword, and an 'upcoming' array of scheduled premiere streams. Each array entry likely contains stream metadata such as title, channel, and URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "topic": {
   "type": "string",
   "description": "Keyword to monitor (e.g. bitcoin)"
  },
  "region": {
   "type": "string",
   "description": "2-letter region code"
  },
  "num_videos": {
   "type": "integer",
   "description": "Streams per bucket (default 10, max 15)"
  },
  "include_upcoming": {
   "type": "boolean",
   "description": "Also list scheduled premieres"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "brief": {
   "type": "object"
  },
  "topic": {
   "type": "string"
  },
  "live_now": {
   "type": "array"
  },
  "upcoming": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402vid-live-monitor-youtube-live-stream-tracker-0919336a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402vid.com](https://www.zero.xyz/host/x402vid.com/llms.txt)
