Documentation

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

  1. Navigate to the API Keys page
  2. Click "Generate New Key"
  3. Give your key a descriptive name
  4. 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:

  1. Navigate to the Jobs page
  2. Use the "Run Job" form at the top
  3. Select your job type (Transcription, Translation, Voice-over, or Full Dubbing)
  4. Fill in the required fields
  5. 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