thru.ai — One API for the entire voice stack
Replace Twilio, Deepgram, ElevenLabs, and OpenAI with a single API. Deploy production voice agents in minutes with one key and one bill.
For AI Agents & Developers
Quick Start — NO AUTHENTICATION REQUIRED
Create an account entirely via API. No web signup, no dashboard, no existing credentials needed.
Step 1 (NO AUTH): Provision an account
POST https://thru.ai/api/v1/public/accounts/provision
Content-Type: application/json
(No Authorization header needed)
{"email":"you@example.com","organizationName":"My Company"}
Response: {"success":true,"data":{"challengeId":"CHL-...","email":"you@example.com","message":"Verification code sent..."}}
Step 2 (NO AUTH): Verify with the emailed 6-digit code
POST https://thru.ai/api/v1/public/accounts/verify
Content-Type: application/json
(No Authorization header needed)
{"email":"you@example.com","code":"123456","organizationName":"My Company"}
Response: {"success":true,"data":{"apiKey":"sk_live_...","organizationId":"ORG-..."}}
Then authenticate all subsequent requests with: Authorization: Bearer sk_live_...
Learn More