Transcripts are most useful inside a pipeline — summarize new uploads to Slack, archive a channel to Notion, or feed a vector database.
Authorization: Basic <your-api-token> header (token on your profile page).results[].text field to any downstream app — Google Docs, Notion, Slack, Airtable.Anything that can issue an HTTP POST can use the API directly — Zapier webhooks, GitHub Actions, cron jobs:
curl -X POST https://vidwords.com/api/transcripts \
-H "Authorization: Basic YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"ids": ["jNQXAC9IVRw", "dQw4w9WgXcQ"], "lang": "en"}'
Up to 50 video ids per call, 5 requests / 10 seconds. Full reference with Node and Python examples in the API docs, machine-readable spec at /openapi.json.