Transcription Credentials
Skribby provides managed transcription by default, but you can also bring your own API keys (BYOK) for supported transcription providers. This gives you direct control over your transcription costs and usage.
Overview
When you add your own transcription credentials:
- Transcription costs are billed directly by the provider to your account
- Skribby charges the base rate only (no transcription markup)
- You maintain full control over your provider relationship, usage limits, and billing
Supported Providers
| Provider | Required Fields | Notes |
|---|---|---|
| Deepgram | API Key | |
| AssemblyAI | API Key | |
| Speechmatics | API Key | |
| Rev AI | API Key | |
| Whisper (Groq) | API Key | |
| Gladia | API Key | |
| ElevenLabs | API Key, Region | Region: us or eu |
| Soniox | API Key, Region | Region: us, eu, or japan |
| Salad | API Key, Organization Slug | Org slug from your Salad dashboard |
Adding Credentials
- Navigate to Settings → Transcription Credentials in the Skribby Dashboard
- Click Add Credential
- Select the transcription provider
- Enter the required fields for that provider
- Save the credential
Once saved, you'll receive a Credential ID (UUID) that you use in API requests.
Using Credentials in API Requests
Pass the transcription_credentials parameter when creating a bot:
{
"transcription_model": "deepgram-realtime",
"transcription_credentials": "your-credential-uuid-here",
"meeting_url": "https://meet.google.com/abc-defg-hij",
"service": "gmeet",
"bot_name": "My Bot"
}
The credential must match the transcription model's provider. For example:
deepgram,deepgram-v3,deepgram-realtime,deepgram-realtime-v3→ Deepgram credentialassembly-ai,assembly-ai-realtime→ AssemblyAI credentialelevenlabs,elevenlabs-v2,elevenlabs-realtime-v2→ ElevenLabs credential
Pricing Impact
Standard (Non-Realtime) Models
When using BYOK with standard transcription models:
- You pay: Transcription costs directly to your provider
- Skribby charges: Base bot rate only ($0.35/hr)
Realtime Models
When using BYOK with realtime transcription models:
- You pay: Transcription costs directly to your provider
- Skribby charges: Base bot rate ($0.35/hr) + Realtime surcharge ($0.05/hr) = $0.40/hr
The realtime surcharge covers the additional infrastructure required for low-latency streaming.
Failure Modes
If your API key is invalid, expired, or has insufficient credits:
- The bot will attempt transcription with your credentials
- When the provider rejects the request, the bot status changes to
invalid_api_key - No fallback to managed transcription occurs; the transcription fails
- You'll receive a webhook event with the failure details
⚠️ No Automatic Fallback: Skribby does not automatically fall back to managed transcription if your credentials fail. Ensure your API keys are valid and have sufficient credits before deploying bots.
Best Practices
- Monitor your provider usage: Set up alerts in your provider dashboard to avoid unexpected charges or hitting rate limits
- Test credentials: Create a test bot before production deployment to verify credentials work
- Use separate keys: Consider using dedicated API keys for Skribby rather than shared keys used elsewhere
- Plan for rotation: Have a process for rotating keys without downtime