Search YouTube or look up videos by id, each with live statistics read at call t
Search YouTube or look up videos by id, each with live statistics read at call time from the YouTube Data API v3: title, channel, upload time, duration, views, likes, comments, live flag and thumbnail. A query runs YouTube's own video search (sort by relevance, date, views, rating or title; filter by upload date, country, language) plus one details call; video_ids skips it. Input: query or video_ids; optional max_results, order, published_after, region_code, language.
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://hubvibe-io.com/work/video/youtube
| Category | Image and media |
|---|---|
| Provider host | hubvibe-io.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-27 | valid payment request | 402 | $0.05 | 832 ms |
Example input (from the provider)
{
"body": {
"max_results": 3,
"query": "open source licensing"
},
"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": {
"additionalProperties": false,
"oneOf": [
{
"required": [
"query"
]
},
{
"required": [
"video_ids"
]
}
],
"properties": {
"language": {
"description": "With query: ISO 639 language code of the results to prefer, e.g. en, ja.",
"pattern": "^[A-Za-z]{2,3}$",
"type": "string"
},
"max_results": {
"description": "With query: videos to return, default 10.",
"maximum": 25,
"minimum": 1,
"type": "integer"
},
"order": {
"description": "With query: YouTube's sort, default relevance.",
"enum": [
"relevance",
"date",
"viewCount",
"rating",
"title"
],
"type": "string"
},
"published_after": {
"description": "With query: only videos uploaded at or after this RFC 3339 time, e.g. 2026-01-01T00:00:00Z.",
"format": "date-time",
"type": "string"
},
"query": {
"description": "Words to search YouTube for, in any language. Use this OR `video_ids`.",
"maxLength": 300,
"minLength": 1,
"type": "string"
},
"region_code": {
"description": "With query: ISO 3166-1 alpha-2 country whose results to prefer, e.g. US, JP.",
"maxLength": 2,
"minLength": 2,
"type": "string"
},
"video_ids": {
"description": "YouTube video ids (11 characters) to look up directly; skips the search.",
"items": {
"pattern": "^[A-Za-z0-9_-]{11}$",
"type": "string"
},
"maxItems": 25,
"minItems": 1,
"type": "array"
}
},
"required": [],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "The 200 body of every paid /work call. `result` is the worker's own output (its schema is per route); everything else is the same on every /work route. A receipt for the job is at `receipt_url`.",
"properties": {
"billing_warning": {
"description": "Present only when the charge was recorded with a caveat.",
"examples": [
"settlement pending"
],
"type": "string"
},
"price_usd": {
"description": "What this call cost, in USD.",
"examples": [
0.02
],
"type": "number"
},
"provenance": {
"description": "How the result was produced: which providers ran and how long each took.",
"properties": {
"attempts": {
"description": "Provider attempts made, including retries and failovers.",
"examples": [
1
],
"type": "integer"
},
"elapsed_ms": {
"description": "Wall-clock milliseconds for the whole job.",
"examples": [
340
],
"type": "integer"
},
"providers_used": {
"description": "Providers that served the job.",
"examples": [
[
"coinbase-advanced-trade-public"
]
],
"items": {
"description": "Provider name.",
"examples": [
"coinbase-advanced-trade-public"
],
"type": "string"
},
"type": "array"
},
"steps": {
"description": "Every step the job ran, in order.",
"items": {
"description": "One step of the job.",
"properties": {
"ms": {
"description": "Milliseconds the step took.",
"examples": [
312
],
"type": "integer"
},
"ok": {
"description": "Whether the step succeeded.",
"examples": [
true
],
"type": "boolean"
},
"provider": {
"description": "Provider that served the step.",
"examples": [
"coinbase-advanced-trade-public"
],
"type": "string"
},