Get Your API Key

Start using the YourVoic API in minutes with a free account.

Sign Up

🚀 Get Started Free

Sign up for a free account with 50,000 characters per month. No credit card required.

Sign Up Now →

How to Get Your API Key

1

Create an Account

Visit yourvoic.com/signup and create a free account with your email.

2

Verify Your Email

Click the verification link sent to your email to activate your account.

3

Access Dashboard

Log in and navigate to the API section in your dashboard.

4

Generate API Key

Click "Create API Key", give it a name, and copy your new key.

API Key Types

Different key types for different use cases:

TypePrefixUse Case
Test Key yv_test_ Development and testing (limited requests)
Live Key yv_live_ Production use (full access)
💡 Tip

Use test keys during development to avoid consuming your character quota. Switch to live keys when deploying to production.

Available Plans

Choose the plan that fits your needs:

PlanCharacters/MonthRate LimitPrice
Free 50,000 20 req/min $0/month
Basic 500,000 60 req/min $29/month
Pro 2,000,000 120 req/min $99/month
Enterprise Unlimited Custom Contact us

Keep Your Key Secure

  • Never share your API key publicly or commit it to version control
  • Use environment variables to store keys in your applications
  • Rotate keys regularly, especially if you suspect compromise
  • Use server-side calls - never expose keys in client-side code
bash
# Store in environment variable
export YOURVOIC_API_KEY="yv_live_your_key_here"

# Use in your code
import os
api_key = os.getenv("YOURVOIC_API_KEY")