YouTube video metadata in one call
YouTube video metadata in one call: title, channel name and id, duration, upload date, view and like counts, description, thumbnail URL, the chapter list with start and end times, and the language plus kind (manual or auto) of every available caption track. Never downloads media. Use it to check a video's length or caption availability before paying for a transcript, or to enrich a bare video link with real facts.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
982 msmedian answer time
$0.001listed price per call
$0.001price 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
GET https://video.cyberwarex.com/meta
| Category | Image and media |
|---|---|
| Provider host | video.cyberwarex.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 31 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.001 | 982 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"url": "https://www.youtube.com/watch?v=arj7oStGLkU"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"url": {
"description": "YouTube video URL or bare 11-character video id.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"available_captions": {
"description": "Caption tracks: lang plus kind (manual or auto).",
"items": {
"type": "object"
},
"type": "array"
},
"channel": {
"type": "string"
},
"channel_id": {
"type": "string"
},
"chapters": {
"description": "Chapter title with start and end seconds; empty when none.",
"items": {
"type": "object"
},
"type": "array"
},
"description": {
"type": [
"string",
"null"
]
},
"duration_s": {
"description": "Video length in seconds.",
"type": [
"number",
"null"
]
},
"like_count": {
"type": [
"integer",
"null"
]
},
"thumbnail": {
"type": [
"string",
"null"
]
},
"title": {
"type": "string"
},
"upload_date": {
"type": "string"
},
"video_id": {
"type": "string"
},
"view_count": {
"type": [
"integer",
"null"
]
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}