How Credits Work

AudioPod AI uses a credit-based pricing model where different features consume credits based on usage. This provides transparent, predictable costs for your AI audio processing needs.

Credit Basics

  • 1 Credit = ~$0.000133 USD (0.0133 cents)
  • 7,500 credits = $1.00 USD (Pay-as-you-go rate)
  • Subscription credits reset monthly
  • Pay-as-you-go credits never expire
  • Volume discounts available

Welcome Credits

New accounts receive 10,000 welcome credits (~$1.33 value) to get started with AudioPod AI.

Credit Types

AudioPod AI uses a dual credit system:
  • Subscription Credits: Reset monthly based on your plan (Basic: 10,000, Starter: 40,000, etc.)
  • Pay-as-you-go Credits: Purchase additional credits that never expire
  • Usage Priority: Pay-as-you-go credits are used first, then subscription credits

Credit Pricing by Feature

Speech Processing

FeatureCredit CostExample
Text to Speech330 credits per minute2-minute generation = 660 credits
Speech-to-Text660 credits per minute3-minute audio = 1980 credits
Transcription660 credits per minute3-minute transcription = 1980 credits
Voice Cloning330 credits per minute2-minute sample = 660 credits
Voice Changer990 credits per minuteTransform 2-minute audio = 1980 credits
Speech Translation3300 credits per minuteTranslate 1-minute speech = 3300 credits
Audio Translation1650 credits per minuteTranslate 1-minute audio = 1650 credits

Audio Processing

FeatureCredit CostExample
Stem Separation990 credits per minuteSeparate 3-minute song = 2970 credits
Speaker Extraction1650 credits per minuteExtract speakers from 5-min audio = 8250 credits
Noise Reduction330 credits per minuteClean 4-minute recording = 1320 credits
Media Extraction6 credits per minuteDownload 10-minute YouTube video = 60 credits

Content Generation

FeatureCredit CostExample
Music Generation1320 credits per minuteGenerate 2-minute track = 2640 credits
Prices are subject to change. Current pricing is always available in your billing dashboard.

Purchasing Credits

Pay-As-You-Go Credits

Starter Pack

$1 = 7,500 credits - Perfect for testing and small projects - ~23 minutes of Text-to-Speech - ~11 minutes of transcription

Small Pack

$10 = 75,000 credits - Ideal for small development projects - ~3.8 hours of Text-to-Speech - ~1.9 hours of transcription

Medium Pack

$50 = 375,000 credits - Great for active development - ~19 hours of Text-to-Speech - ~9.5 hours of transcription

Large Pack

$200 = 1,500,000 credits - Volume pricing for production apps - ~76 hours of Text-to-Speech - ~38 hours of transcription

Auto-Recharge

Set up automatic credit purchases to avoid service interruptions:
  1. Go to Billing Settings
  2. Click Enable Auto-Recharge
  3. Choose your recharge amount and trigger threshold
  4. Add a payment method
  5. Save your preferences
Example Auto-Recharge Setup:
  • Trigger: When balance drops below 7,500 credits
  • Amount: Purchase 75,000 credits ($10)
  • Payment: Charged to default payment method

Monitoring Usage

Real-Time Balance

Check your current credit balance:
  • Dashboard: Always visible in the top navigation
  • API: Use the /api/v1/credits endpoint
  • Mobile: AudioPod AI mobile app notifications

Usage Analytics

The billing dashboard provides detailed analytics:

Daily Usage

  • Credits consumed per day
  • Breakdown by feature
  • Cost analysis

Monthly Reports

  • Usage trends and patterns
  • Feature utilization
  • Cost projections

Usage Alerts

Set up notifications when:
  • Balance drops below a threshold
  • Daily usage exceeds limits
  • Unexpected usage spikes occur

API Usage Tracking

Track usage programmatically:
import requests

def get_account_balance(api_key):
    headers = {"Authorization": f"Bearer {api_key}"}
    response = requests.get(
        "https://api.audiopod.ai/api/v1/credits",
        headers=headers
    )

    if response.status_code == 200:
        data = response.json()
        return {
            "balance": data["balance"],
            "payg_balance": data.get("payg_balance", 0),
            "total_available_credits": data["balance"] + data.get("payg_balance", 0)
        }

balance = get_account_balance(your_api_key)
print(f"Subscription credits: {balance['balance']}")
print(f"Pay-as-you-go credits: {balance['payg_balance']}")
print(f"Total available: {balance['total_available_credits']} credits")

Billing Management

Payment Methods

AudioPod AI accepts:
  • Credit Cards: Visa, Mastercard, American Express
  • PayPal: For individual and business accounts
  • Bank Transfer: For enterprise customers (invoicing available)
  • Cryptocurrency: Bitcoin, Ethereum (enterprise only)

Adding Payment Methods

  1. Go to Manage Billing
  2. Click Add Payment Method
  3. Enter your payment information
  4. Verify with a small test charge
  5. Set as default if desired

Invoicing and Receipts

  • Automatic Receipts: Emailed for every credit purchase
  • Monthly Statements: Detailed usage and billing summary
  • Custom Invoicing: Available for enterprise accounts
  • Tax Documents: End-of-year summaries for business accounting

Billing History

View your complete billing history:
  • All credit purchases and dates
  • Payment method used
  • Invoice downloads (PDF)
  • Refund information

Cost Optimization

Efficient Usage Tips

Text-to-Speech Optimization

# Good: Process longer texts in single requests
long_text = "Your long content here..."
audio = client.tts.create(text=long_text)

# Avoid: Multiple small requests
# This uses more credits due to minimum charges
for sentence in sentences:
    audio = client.tts.create(text=sentence)  # Less efficient

Batch Processing

# Process multiple files together
audio_files = ["file1.mp3", "file2.mp3", "file3.mp3"]
results = client.batch_process(
    files=audio_files,
    operation="speech_to_text"
)

Quality vs. Cost

  • Use appropriate quality settings for your use case
  • Consider compressed audio formats for storage
  • Implement caching for repeated requests

Usage Patterns

Monitor and optimize based on patterns:
  • Peak Usage Times: Identify and plan for high-usage periods
  • Feature Utilization: Focus resources on most-used features
  • Error Rates: Reduce costs by fixing API usage errors

Subscription Plans

Basic Plan (Free)

  • 10,000 credits per month
  • All features available
  • Rate limits apply
  • Community support

Starter Plan ($5/month)

  • 40,000 credits per month (~$5.33 value)
  • API access included
  • Standard rate limits
  • Email support

Creator Plan ($20/month)

  • 200,000 credits per month (~$26.67 value)
  • Unlimited custom voice models
  • API access
  • Early access to new features
  • Priority support

Pro Plan ($50/month)

  • 600,000 credits per month (~$80 value)
  • Unlimited custom voice models
  • API access
  • Early access to new features
  • Priority support

Studio Plan ($100/month)

  • 1,250,000 credits per month (~$166.67 value)
  • Unlimited custom voice models
  • API access
  • Early access to new features
  • Dedicated support

Upgrade Your Plan

Compare plans and find the best fit for your needs

Troubleshooting

Common Billing Issues

Getting Help

If you encounter billing issues:
  1. Check Status Page: AudioPod AI services health
  2. Review Documentation: Common issues and solutions
  3. Contact Support: support@audiopod.ai
  4. Emergency Contact: For critical billing issues

Next Steps