A collection of working examples showing how to use Deepgram SDKs with popular platforms, frameworks, and ecosystems.
→ Contributing · → Open PRs · → Suggest an example
| # | Example | Language | Integration | Status |
|---|---|---|---|---|
| 010 | Getting Started — Transcribe a URL with Node.js | Node.js | Deepgram SDK | ✅ passing |
| 020 | Twilio Media Streams — Real-Time Call Transcription | Node.js | Twilio | ✅ passing |
| 030 | LiveKit Agents — Voice Assistant with Deepgram STT | Python | LiveKit | ✅ passing |
| 040 | LangChain STT Tool — Transcribe Audio in AI Pipelines | Python | LangChain | ✅ passing |
| 050 | Vercel AI SDK — Transcribe Audio and Generate Speech with Deepgram | Node.js | Vercel AI SDK | ✅ passing |
| 060 | Discord Bot — Transcribe Audio Attachments with Deepgram | Node.js | Discord | ✅ passing |
| 070 | Vonage Voice API — Real-Time Call Transcription | Node.js | Vonage | ✅ passing |
| 080 | Pipecat Voice Pipeline — Conversational Bot with Deepgram STT & TTS | Python | Pipecat | ✅ passing |
| 090 | React Native Live Transcription | Node.js | React Native | ✅ passing |
| 100 | FastAPI Audio Transcription API | Python | FastAPI | ✅ passing |
| 110 | Cloudflare Worker — Edge Audio Transcription | Node.js | Cloudflare | ✅ passing |
| 120 | Slack Bot — Auto-Transcribe Audio Messages with Deepgram | Node.js | Slack | ✅ passing |
| 130 | Telegram Voice Transcription Bot | Python | Telegram | ✅ passing |
| 140 | Audio to Subtitles CLI | Python | Deepgram SDK | ✅ passing |
| 150 | Flutter Voice Transcription | Dart | Flutter | ✅ passing |
Status last updated 2026-03-30.
Every PR that touches examples/** runs language-specific test jobs automatically. The e2e-api-check status check is required before merge.
| Language | Marker file |
|---|---|
| Node.js / TypeScript | package.json |
| Python | requirements.txt or pyproject.toml |
| Go | go.mod |
| Java | pom.xml or build.gradle |
| Rust | Cargo.toml |
| .NET | *.csproj or *.sln |
| CLI | example.sh or src/*.sh |
All examples are also tested on a recurring schedule to catch regressions from SDK updates or API changes.
examples/
{NNN}-{slug}/ # e.g. 010-getting-started-node
README.md # What it does, prerequisites, env vars, how to run
.env.example # Every required environment variable (no values)
src/ # Source code
tests/ # Tests — exit 0=pass, 1=fail, 2=missing credentials
tests/
e2e.py # Deepgram STT + TTS smoke test (runs on every PR)
.github/
workflows/ # CI workflows
ISSUE_TEMPLATE/ # Issue templates
Examples are numbered globally in increments of 10: 010, 020, 030 … A platform owns its group — a second Twilio example would be 021, not a new slot. New platforms claim the next free multiple of 10.
- Add
DEEPGRAM_API_KEYas a repository secret — required for E2E tests - Add partner credentials as needed (each example's
.env.examplelists them)
GITHUB_TOKEN is provided automatically by GitHub Actions.
Open an issue to suggest a new example, or submit a PR directly. See CONTRIBUTING.md for guidelines.