Skip to main content

$ GET /v1/youtube/transcript

YouTube transcripts and metadata.One GET request away.

VCyon is a REST API for YouTube data: transcripts, captions, channels, and playlists. No OAuth setup, no quota math, no scraper maintenance.

free to try, no signup. need volume? claim 100 free credits or open the playground

request

GET /v1/youtube/transcript
    ?videoId=UF8uR6Z6KLc

response

{
  "videoId": "UF8uR6Z6KLc",
  "language": "en",
  "segments": [
    { "start": 0.0, "text": "..." }
  ]
}

01 / the problem

Every route to YouTube data is broken.

Three days debugging why transcripts stopped working. Another provider down. Your scraper blocked. Meanwhile, the actual product roadmap sits untouched.

  1. 01

    YouTube's official API

    • No transcript access at all
    • Complex quota system
    • OAuth required for basic data
    • Rate limits hit fast
  2. 02

    Web scraping

    • Breaks on every YouTube update
    • IP bans and legal gray areas
    • Constant maintenance
    • Unreliable at scale
  3. 03

    Other transcript APIs

    • Hidden rate limits
    • Surprise downtime
    • Poor documentation
    • Expensive subscriptions
  4. 04

    DIY pipelines

    • Weeks of development time
    • Ongoing maintenance burden
    • Scaling headaches
    • Technical debt piles up

// there is a fifth option. keep scrolling.

03 / quickstart

One call. Real JSON.

Pick an endpoint, copy the command, get data back. Demo requests are rate limited; sign in for an API key when you need sustained throughput.

Create a free API key

02 / quickstart

bash
curl 'https://api.vcyon.com/v1/youtube/video?videoId=UF8uR6Z6KLc' \
  -H 'x-api-key: YOUR_KEY'
VCyon: Reliable YouTube Transcript & Data API