TranscribeToolTranscribeToolby Synapse Foundry

GitHub examples

GitHub-friendly transcription API examples for agent and developer workflows.

Use these examples as the starter surface for a public GitHub repo, README, or integration guide: clear request shapes, explicit billing guardrails, and copy-paste flows for YouTube, podcasts, batch jobs, and polling.

Starter examples for a GitHub README

YouTube transcript exampleGood first example for a README or integration guide.
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": "github_example",
    "modules": { "summary": true },
    "billing": { "mode": "metered", "max_amount_usd": 1.50 }
  }'

Why this page exists

GitHub surfaceIt points to a real public starter repo instead of only describing one.

Integration clarityThe repo keeps request shapes, pricing guardrails, polling scripts, and a GitHub Actions template together.

Discovery supportIt adds another crawlable public surface tied to “examples” and “GitHub” language.