FaithTranscripts + Zapier

Automate sermon transcript cleanup with Zapier.

Clean captions land in YouTube. Polished transcripts land in Google Docs. Zero copy-paste — powered by a single Zap connecting the tools you already use.

Diagram: a YouTube upload flows into FaithTranscripts, which hands the cleaned transcript to Zapier, which delivers it to Google Docs.

How it works

Three steps, start to finish

1

Create an API key

In Settings → API Keys, click Create API key and copy the value. In Zapier, set up a reusable connection with a custom header Authorization.
Authorization: Bearer ft_live_YOUR_KEY
Authentication reference
2

Send transcripts to FaithTranscripts

Pick any Zapier trigger — New Video in YouTube, New File in Dropbox, New Item in RSS — then add a Webhooks by Zapier → Custom Request action that POSTs the source to the FaithTranscripts API.
POST https://www.faithtranscripts.com/api/v1/transcripts
Content-Type: application/json
Authorization: Bearer ft_live_YOUR_KEY

{
  "source_type": "youtube",
  "url": "{{trigger.videoUrl}}",
  "title": "{{trigger.title}}",
  "options": { "ai_pass": { "enabled": true } }
}
Full request spec
3

Deliver the cleaned transcript

Create a second Zap triggered by Webhooks by Zapier → Catch Hook. Paste the URL into Settings → Webhooks. Route the JSON payload to Google Docs, Notion, your CMS, or anywhere else.
POST /hooks/ft HTTP/1.1
X-FT-Event: transcript.completed
X-FT-Signature: 3ac15e2dfa...

{
  "id": "tr_01HW...",
  "status": "completed",
  "content": "…cleaned transcript…",
  "changes_summary": { "total": 42, "by_category": { "bible": 15 } }
}
Webhook headers & signing

Build your pipeline

Connect any source to any destination

Trigger on new audio or text from

  • New YouTube upload
  • New Dropbox file
  • New Google Drive file
  • New Podbean episode
  • New Buzzsprout episode
  • New RSS item
  • New row in Airtable
  • New event in Calendly

Deliver the cleaned transcript to

  • Google Docs
  • Notion
  • WordPress
  • Substack
  • Airtable
  • Mailchimp
  • Slack alert
  • Team email digest

Developer docs

For engineers on your team

FAQ

Frequently asked questions

  • No. Every step uses the built-in Webhooks by Zapier action or trigger. You paste your FaithTranscripts API key once, copy a URL, and Zapier handles the rest.

Ship your first Zap

FaithTranscripts is in early development. Drop your email and we'll let you know when Zapier templates are ready.

No spam. Just one email when we're ready for you.

Prefer self-hosted? See the n8n integration.