Quickstart
Quickstart
Get up and running with CheapAI API in under 2 minutes.
1
Create an Account
Sign up at cheapaiapi.com/register. You'll get access to the dashboard, billing, and API key controls.
2
Get Your API Key
Go to Dashboard → API Keys and create a new key. You can keep up to 3 active keys, and each key can have an optional daily spend limit or expiration date.
3
Choose an Endpoint
CheapAI exposes task-based voice and image APIs. Common starting points:
POST /v1/text-to-speech/:voiceIdfor the primary text-to-speech workflowPOST /v1m/task/text-to-speechfor alternate voice synthesis routesPOST /v1e/task/text-to-speechfor broad multilingual voice coveragePOST /v1i/task/generate-imagefor image generation
4
Make Your First Request
bash
curl -X POST "https://api.cheapaiapi.com/v1/text-to-speech/21m00Tcm4TlvDq8ikWAM?output_format=mp3_44100_128" \
-H "Authorization: Bearer sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"text": "The first move is what sets everything in motion.",
"model_id": "eleven_multilingual_v2"
}'5
Poll the Task Result
bash
curl "https://api.cheapaiapi.com/v1/task/$TASK_ID" \
-H "Authorization: Bearer sk_your_api_key" \
-H "Content-Type: application/json"6
Explore More
From there you can branch into the rest of the platform:
- Authentication — bearer token setup and key safety
- API Explorer — current voice, image, and account endpoints
- Image Generation — async image workflow
- Rate Limits — active key limits and daily caps