# Video Intel

> Video Intel is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Fetches and summarizes YouTube video metadata (title, channel, duration, views, likes, description) to help an agent decide whether a video is worth watching.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/video-intel
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/video-intel-cc651e0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EMtQIuJIIr2uA2_PuvpJx

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 video-intel-cc651e0b
```

Example prompt: Before I spend 45 minutes on it, can you pull the metadata for this YouTube video — https://www.youtube.com/watch?v=dQw4w9WgXcQ — and tell me whether it looks legit and worth my time based on the title, channel, views, likes, and description?

## When to prefer this

Use this endpoint when an agent needs to quickly evaluate a YouTube video without watching it — especially useful for pre-screening content, fact-checking viral claims, or curating videos for newsletters or research. Prefer this over manual YouTube browsing when an agent needs structured, scored metadata with a quality signal rather than raw data.

## Known failure modes

- Invalid or non-existent YouTube video URL returns an error
- Payment not completed results in a 402 response requiring USDC payment
- Private or age-restricted videos may not return full metadata
- Rate limiting or upstream YouTube API issues may cause failures
- Missing required input parameters returns a validation error

## How this service works

YouTube metadata intel (title, channel, duration, views, likes, description) summarized for an agent deciding whether a video is worth watching. No transcript (v1).

## Output

Returns a structured response with YouTube video metadata (title, channel, duration, views, likes, description) plus an agent-facing summary, a quality/relevance score, confidence level, strengths, and risk factors — helping the agent decide whether the video is worth recommending or consuming.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Composite input parameter"
      },
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "Video Intel paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "score": {
         "type": "number"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "summary": {
         "type": "string"
        },
        "evidence": {
         "type": "object"
        },
        "strengths": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "confidence": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "riskFactors": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         "type": "string"
        },
        "selfPay": {
         "type": "bo
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "service": "video-intel"
  },
  "service": "video-intel",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/video-intel-cc651e0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
