Skip to content

Pricing

ph0ny uses a credit-based billing system. 1 credit = $0.001.

Tiers

TierPriceMonthly CreditsOverage RateCredit Carryover
Free$0/mo2,500Hard cap (no overage)None
Starter$29/mo50,000$0.0010/credit1 month
Pro$99/mo200,000$0.0008/credit1 month
Scale$499/mo1,000,000$0.0006/credit2 months

Credit Costs

Text-to-Speech (per 1,000 characters)

ProviderCredits
Cartesia78
ElevenLabs166
Deepgram30
Fish Audio10
Resemble AI120
Inworld80
Chatterbox6
Pocket TTS2
Kokoro4
Qwen TTS4

Speech-to-Text (per minute of audio)

ProviderCredits
Whisper12
Deepgram9
ElevenLabs6
Fish Audio8
Cartesia10
Mistral8
Groq2

LLM (per 1,000 tokens)

ModelInputOutput
OpenAI GPT-5.2520
OpenAI GPT-4.1416
OpenAI GPT-4.1 Mini13
OpenAI GPT-4.1 Nano11
Anthropic Claude Sonnet 4630
Anthropic Claude Haiku 3.528
Groq Llama 4 Maverick12
Groq Llama 4 Scout11

RAG

OperationCredits
Search query2

BYOK (Bring Your Own Key)

When you provide your own provider API key via X-Provider-Key-* headers or stored keys, requests to that provider bypass credit metering entirely. You pay the provider directly at their rates, and ph0ny charges zero credits.

This makes BYOK ideal for high-volume production workloads where you have negotiated rates with providers.

Check Usage

bash
curl https://persona-labsvoice-api-production.up.railway.app/v1/usage \
  -H "Authorization: Bearer $PH0NY_API_KEY"
json
{
  "credits": {
    "used": 1250,
    "limit": 50000,
    "remaining": 48750
  },
  "breakdown": {
    "tts": 800,
    "stt": 200,
    "llm": 200,
    "rag": 50
  },
  "requestCount": 342
}

Subscription Management

bash
# View current subscription
curl https://persona-labsvoice-api-production.up.railway.app/v1/billing/subscription \
  -H "Authorization: Bearer $PH0NY_API_KEY"

# Create checkout session (redirects to Stripe)
curl -X POST https://persona-labsvoice-api-production.up.railway.app/v1/billing/checkout \
  -H "Authorization: Bearer $PH0NY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tier": "pro",
    "successUrl": "https://yourapp.com/billing/success",
    "cancelUrl": "https://yourapp.com/billing/cancel"
  }'

# Open billing portal (manage subscription, invoices)
curl -X POST https://persona-labsvoice-api-production.up.railway.app/v1/billing/portal \
  -H "Authorization: Bearer $PH0NY_API_KEY"

Built by Persona Labs.