Authentication
The Redner B2B API uses API key authentication for all programmatic requests.
API Key Authentication
All API requests must include your API key in the Authorization header.
Format
Authorization: Bearer rdn_live_<random_string>
Example
bash
curl -X POST https://api.rednerapp.com/v1/transcribe \
-H "Authorization: Bearer rdn_live_abc123..." \
-H "Content-Type: application/json" \
-d '{"mediaUrl": "https://example.com/video.mp4", "sourceLanguage": "en-US"}'Generating API Keys
- Sign in to the Developer Portal
- Navigate to the API Keys page
- Click "Generate New Key"
- Copy the key immediately (it will only be shown once)
Security Best Practices
- Never commit API keys to version control
- Store keys in environment variables
- Rotate keys regularly
- Use different keys for different environments
- Revoke compromised keys immediately through the Developer Portal