TranscribeToolTranscribeToolby Synapse Foundry

API examples

Transcription API examples for YouTube, podcasts, and batch workflows.

Copy-paste examples for the exact flows agents and developers look for first: queue a transcript job, run batch transcription, poll status, and keep pricing explicit.

Copy-paste examples

YouTube transcript jobQueue one YouTube video for async transcript processing.
curl -X POST https://transcribetool.com/api/v1/transcript-jobs   -H "x-api-key: YOUR_API_KEY"   -H "content-type: application/json"   -d '{
    "source": { "youtube_url": "https://www.youtube.com/watch?v=MNNfat_QP0E" },
    "source_app": "my_agent",
    "modules": { "summary": true, "knowledge_extraction": true },
    "billing": { "mode": "metered", "max_amount_usd": 2.00 }
  }'

What these examples show

InputsYouTube, podcasts, playlists, channels, feeds, and batch URL lists.

BillingPer-second transcript billing with optional modules only when requested.

OutputsTranscript, summary, structured knowledge, and batch artifacts.