Quickstart
Welcome to the Redner B2B API! This guide will help you get started with our media processing APIs in minutes.
Prerequisites
- An active Redner B2B account
- At least $5 in your account balance
- An active API key
Step 1: Generate an API Key
- Navigate to the API Keys page
- Click "Generate New Key"
- Give your key a descriptive name
- Copy the key immediately (it will only be shown once)
Step 2: Make Your First Request
You have two options for submitting jobs:
Option A: Run Job from Developer Portal
The easiest way to test the API is through the Developer Portal:
- Navigate to the Jobs page
- Use the "Run Job" form at the top
- Select your job type (Transcription, Translation, Voice-over, or Full Dubbing)
- Fill in the required fields
- Click "Run Job"
Your job will appear in the Jobs History table below, where you can monitor its progress.
Option B: Programmatic API Call
For production use, make API calls programmatically. Here's a simple example to transcribe a media file:
bash
curl -X POST https://api.rednerapp.com/v1/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"mediaUrl": "https://example.com/video.mp4",
"sourceLanguage": "en-US"
}'The API will return a job ID that you can use to track your job's progress.
Step 3: Set Up Webhooks (Optional)
Configure a webhook URL in your Settings to receive real-time notifications when jobs complete. This is the recommended way to monitor job status.
Next Steps
- Explore the API Reference for detailed endpoint documentation
- Learn about Webhooks for real-time notifications
- Check out Error Handling best practices