Introducing Sonna Console — Your Developer Portal for the Sonna API
Sonna Console is live. Manage API keys, track usage analytics, browse the model catalog, and monitor request logs — all in one place.
Sonna Console is now available to all Pro, Max, and PAYG users at /app/console. It's the central developer hub for everything API-related on Sonna — from creating API keys to monitoring exactly how your credits are being spent.
This article walks through each tab and explains what you can do with it.
What Is Sonna Console?
Sonna Console is a dedicated portal inside your Sonna account designed for developers and power users who access Sonna through the API. Instead of navigating scattered settings pages, everything you need to build and manage integrations lives in one place.
The Console has four main sections: API Keys, Analytics, Models, and Request Log.
API Keys Tab
The API Keys tab is where you create and manage the keys used to authenticate requests to the Sonna API.
Creating a key takes a few seconds: give it a name (e.g., "my-app-production"), click Create, and your key is generated instantly. Keys follow the format sona_sk_... and are shown once at creation — store them securely, as they cannot be retrieved again.
Key limits and restrictions:
- You can hold a maximum of 10 active API keys per account
- Revoking a key is immediate and permanent — any application using that key stops working instantly
- API access requires a Pro plan, Max plan, or PAYG credits — Free plan users cannot create API keys
The 10% API Discount applies automatically to all TTS, image, and music generations made via the API. This discount is applied at the credit deduction stage, so you pay 10% fewer credits than the listed rate on every eligible generation. Note that video generation is excluded from the API discount.
Analytics Tab
The Analytics tab gives you a 30-day rolling view of your credit consumption.
The main chart shows total credits used per day, making it easy to spot spikes and understand usage patterns over time. Below the chart, a by-feature breakdown shows how your credits are distributed across generation types: TTS, image, music, and any other features you use.
This is especially useful for developers building applications on top of the Sonna API — you can quickly identify which features are driving the most credit usage and adjust your implementation accordingly.
Models Tab
The Models tab is a full catalog of every AI model available on Sonna, including:
- Model name and provider
- The API identifier used in requests (e.g.,
nano-banana-2,eleven-v3) - Credit cost per generation
- Whether the model is eligible for the 10% API discount
Having the catalog inside the Console means you don't need to context-switch to the main Models page while you're building. You can reference pricing and model IDs directly alongside your API key management.
Request Log Tab
The Request Log tab shows the 20 most recent generations made through your account, whether via the web app or the API.
Each entry includes:
- Timestamp
- Model used
- Generation type (TTS, image, video, music)
- Credits consumed
- Request status (success or error)
This is useful for debugging API integrations. If a generation failed or returned unexpected results, the Request Log lets you confirm whether the request reached Sonna and what response it produced, without needing to instrument your own logging layer.
Getting Started with the Console
- Sign in to your Sonna account at sonnalabs.app
- Ensure you have a Pro plan, Max plan, or PAYG credits — Free accounts cannot access the Console
- Navigate to /app/console
- Click the API Keys tab
- Click Create Key, give it a name, and save the generated key securely
Your first API call can be made within minutes. Here's a minimal example using curl:
curl -X POST https://sonnalabs.app/api/v1/tts/synthesize \
-H "X-API-Key: sona_sk_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"text": "Hello from Sonna.",
"voice": "YOUR_VOICE_ID",
"ttsModel": "eleven-flash-v2-5"
}'
The same key works for all generation types — TTS, image, and music — so you only need to create one key to start building.
Plans That Include API Access
| Plan | Monthly Credits | Price | API Access |
|---|---|---|---|
| Free | 10,000 cr | Free | ❌ |
| Pro | 102,000 cr | Rp139,000/mo | ✅ |
| Max | 187,000 cr | Rp232,000/mo | ✅ |
| PAYG Starter | 62,500 cr | Rp94,000 | ✅ |
| PAYG Plus | 125,000 cr | Rp174,000 | ✅ |
| PAYG Creator | 250,000 cr | Rp317,000 | ✅ |
PAYG credits can be combined with a subscription — subscription credits are consumed first, then PAYG credits top up the balance.
Create your first API key at /app/console/api-keys. Browse the full model catalog on the Models page.
More from News
ElevenLabs Text to Speech — Complete Guide for Creators
Everything you need to know about ElevenLabs on Sonna: Eleven v3, Multilingual v2, Flash v2.5 — which model to pick, credit costs, and real-world use cases.
Google Gemini 2.5 TTS — Natural Multilingual Voice on Sonna
Gemini 2.5 Flash and Pro bring natural AI speech in 30+ languages with style instructions. Here's how to get the most out of both models.
How to Generate Original Music with Suno on Sonna
From simple prompts to full custom-mode compositions — a practical guide to Suno v5.5, v5, v4.5, and when to use each version.