Skip to main content
SomyaLabs bills per plan, each with a monthly allocation of TTS and ASR credits. The live plans come from GET /v1/plans.
PlanPriceBillingTTS credits / cycleASR credits / cycle
Free₹0monthly1,0001,000
Pro₹999 / momonthly10,00010,000
List plans
curl https://api.somya.ai/v1/plans
{
  "success": true,
  "data": {
    "items": [
      { "plan_id": "plan_free", "display_name": "Free Plan", "price_inr": 0,
        "billing_cycle": "monthly", "tts_credits_per_cycle": 1000, "asr_credits_per_cycle": 1000 },
      { "plan_id": "plan_pro_monthly", "display_name": "Pro Plan", "price_inr": 99900,
        "billing_cycle": "monthly", "tts_credits_per_cycle": 10000, "asr_credits_per_cycle": 10000 }
    ]
  }
}
price_inr is in paise (₹999 = 99900). Plans, prices, and credit allocations are returned live by /v1/plans — that endpoint is the source of truth if this table drifts.

Managing your subscription

  • Current subscription: GET /v1/subscriptions/current
  • Subscribe / upgrade: POST /v1/subscriptions, or use the pricing page on the website.
When you exceed your plan’s credits, requests return 402 until the cycle resets or you upgrade — see Rate limits & quota.