Skip to main content
Get set up with the VoiceDub API in under 5 minutes. This guide walks you through getting your API key, testing authentication, and preparing to make your first API calls.

Prerequisites

Before you begin, make sure you have:
A VoiceDub account (sign up here)
An API key from the API Keys Dashboard
API credits on your account (purchase here)
Basic understanding of REST APIs and HTTP requests

Test Your Authentication

Verify your API key is working:
curl -X GET 'https://api.voicedub.ai/v1/me' \
  -H 'Authorization: Api-Key YOUR_API_KEY'
{
  "user": {
    "apiCredits": 1000
  }
}
🎉 Perfect! Your API access is set up and working correctly!

What’s Next?