Summarizes a YouTube video from its URL or ID
Summarizes a YouTube video from its URL or ID: transcript, TLDR, and named entities in one call. Composite: one call runs youtube-transcript + summarize-text + extract-entities. Pulls the YouTube transcript, then summary and named entity extraction (people, orgs, locations, dates) run in parallel. Returns transcript excerpt, summary, entities, and per-component telemetry. Use it as a video digest or closed-caption summarizer.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
3086 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://x402.agentutility.ai/youtube-brief
| Category | Image and media |
|---|---|
| Provider host | x402.agentutility.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 3086 ms |
Example input (from the provider)
{
"body": {
"video_url_or_id": "dQw4w9WgXcQ"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"video_url_or_id": {
"description": "YouTube video ID (11-char) or full URL (youtube.com/watch?v=..., youtu.be/..., /shorts/...). Max 300 chars.",
"type": "string"
}
},
"required": [
"video_url_or_id"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"components": {
"items": {
"properties": {
"ms": {
"type": "integer"
},
"name": {
"type": "string"
},
"ok": {
"type": "boolean"
}
},
"type": "object"
},
"type": "array"
},
"composed_of": {
"items": {
"type": "string"
},
"type": "array"
},
"degraded": {
"type": "boolean"
},
"entities": {
"properties": {
"entities": {
"properties": {
"locations": {
"type": "array"
},
"organizations": {
"type": "array"
},
"people": {
"type": "array"
}
},
"type": "object"
},
"total_entities": {
"type": "integer"
}
},
"type": "object"
},
"language": {
"type": "string"
},
"summary": {
"type": "string"
},
"title": {
"type": "null"
},
"transcript_chars": {
"type": "integer"
},
"transcript_excerpt": {
"type": "string"
},
"video_id": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}