Generates translated subtitles from any video URL in one call
Generates translated subtitles from any video URL in one call. Composite: one call runs video-to-subtitles + translate. SRT subtitles are generated via Whisper v3, then the subtitle text is translated into the target language (100+ languages, structure preserved). Returns original subtitles, translated subtitles, and per-component telemetry. Use it for localized video captions, an SRT generator plus translation, or subtitle localization.
70000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
x402.agentutility.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6c0752c09e7F6fA6526fCDf40e456a159ebB5621",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "70000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "FJqAJ4dXkFbrp3EEo8E9x98iaBGUQwaU8Srz5ePfUXLH",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "70000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"body": {
"target_language": "Spanish",
"video_url": "https://samplelib.com/mp4/sample-5s.mp4"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"components": [
{
"ms": 5100,
"name": "video-to-subtitles",
"ok": true
},
{
"ms": 1400,
"name": "translate",
"ok": true
}
],
"composed_of": [
"video-to-subtitles",
"translate"
],
"degraded": false,
"format": "srt",
"subtitles": "1\n00:00:00,000 --> 00:00:03,000\nHello.\n",
"target_language": "Spanish",
"translated_subtitles": "1\n00:00:00,000 --> 00:00:03,000\nHola.\n",
"video_url": "https://samplelib.com/mp4/sample-5s.mp4"
},
"type": "json"
}
},
"related": [
"/video-to-subtitles",
"/translate"
],
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"target_language": {
"description": "Target language name or ISO code (e.g. 'Spanish', 'es'). Max 60 chars.",
"type": "string"
},
"video_url": {
"description": "Public http(s) URL of the video. Max 2048 chars.",
"type": "string"
}
},
"required": [
"video_url",
"target_language"
]
},
"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"
},
"format": {
"type": "string"
},
"subtitles": {
"type": "string"
},
"target_language": {
"type": "string"
},
"translated_subtitles": {
"type": "string"
},
"video_url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"builder-code": {
"info": {
"a": "bc_awpbwsy3"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://x402.agentutility.ai/caption-translate-pack" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.agentutility.ai/caption-translate-pack");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.agentutility.ai/caption-translate-pack")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5226.json, and this resource appears in /discovery/resources and /discovery/search.