mirrored listing x402 eip155:8453

YouTube video metadata in one call: title, channel name and id, duration, upload date, vie

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.

Do you run video.cyberwarex.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
26
calls / 30d
2
unique payers
2026-09-18
updated

Provider

video.cyberwarex.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "url": "https://www.youtube.com/watch?v=arj7oStGLkU"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "available_captions": [
            {
              "kind": "manual",
              "lang": "en"
            },
            {
              "kind": "auto",
              "lang": "es"
            }
          ],
          "channel": "Example Channel",
          "channel_id": "UCuAXFkgsw1L7xaCfnd5JJOw",
          "chapters": [
            {
              "end": 43,
              "start": 0,
              "title": "Intro"
            }
          ],
          "description": "In this video we walk through agent architectures ...",
          "duration_s": 213,
          "like_count": 18204,
          "thumbnail": "https://i.ytimg.com/vi/arj7oStGLkU/maxresdefault.jpg",
          "title": "Building autonomous agents",
          "upload_date": "2025-10-25",
          "video_id": "arj7oStGLkU",
          "view_count": 1648203
        },
        "type": "json"
      }
    },
    "schema": {
      "$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"
    }
  }
}

Use it

curl

curl "https://video.cyberwarex.com/meta"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://video.cyberwarex.com/meta");
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://video.cyberwarex.com/meta")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6857.json, and this resource appears in /discovery/resources and /discovery/search.