# YouTube Video Context & Technical Command Extractor

> YouTube Video Context & Technical Command Extractor is a paid API for AI agents from agent-product-normalizer.vercel.app, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-18).

Fetches a YouTube transcript and returns a compact all-in-one analysis including context, technical details, and optional question answering for AI agents

## Facts

- Endpoint: GET https://agent-product-normalizer.vercel.app/api/v1/video-analyze
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/youtube-video-context-technical-command-extractor-0296b37c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-YgwabUSE2YD_OmuPm4OE

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 youtube-video-context-technical-command-extractor-0296b37c
```

Example prompt: Can you analyze this YouTube video for me — https://www.youtube.com/watch?v=abc123 — and pull out all the key technical commands and context? Also, I want to know: what tools does the presenter recommend for container orchestration?

## When to prefer this

Choose this endpoint over a plain transcript fetcher when you need not just raw captions but a structured, agent-ready analysis including technical command extraction and optional question answering in a single call. It is ideal when an agent needs to act on video content (e.g. follow instructions, answer a user question, or summarize key points) without making multiple API calls. Prefer it over general web scrapers when the target is specifically a YouTube video and you want pre-processed, compact output rather than raw HTML or unformatted text.

## Known failure modes

- Video URL is private, age-restricted, or unavailable — transcript cannot be fetched
- Video has no captions or transcript enabled — extraction fails
- Unsupported language requested — falls back to default or returns error
- Question asked is not answerable from the video content — returns null or low-confidence answer
- Invalid or malformed YouTube URL — returns validation error
- Very long videos may produce truncated or incomplete analysis

## How this service works

Fetch one YouTube transcript and return a compact all-in-one analysis for agents

## Output

Returns a compact all-in-one analysis of the YouTube video including: a context summary, extracted technical commands or instructions, key insights, and if a question was provided, a direct answer sourced from the video transcript. The response is structured for immediate agent consumption without unnecessary verbosity.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "maxLength": 2048,
       "description": "Public YouTube video URL"
      },
      "lang": {
       "type": "string",
       "maxLength": 20
      },
      "question": {
       "type": "string",
       "maxLength": 4000,
       "description": "Optional question to answer from the video"
      }
     },
     "additionalProperties": false
    }
   },
   "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/youtube-video-context-technical-command-extractor-0296b37c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-product-normalizer.vercel.app](https://www.zero.xyz/host/agent-product-normalizer.vercel.app/llms.txt)
