Quick Start Guide
Get up and running with CPAI in 5 minutes.
1. Sign Up
Section titled “1. Sign Up”Create your account at codingplan.ai. Choose a plan that fits your needs:
- Hobby ($15/mo) - 1 concurrency lane, low priority
- Standard ($30/mo) - 1 concurrency lane, high priority
- Pro ($80/mo) - 3 concurrency lanes, high priority
- Max ($200/mo) - 8 concurrency lanes, very high priority
2. Generate API Key
Section titled “2. Generate API Key”After logging in, navigate to Dashboard → API Keys and create a new API key.
Copy the key starting with cpai- - you’ll need it for all API requests.
3. Make Your First Request
Section titled “3. Make Your First Request”Use the API with your favorite HTTP client:
curl http://localhost:8080/v1/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "kimi-k2.5", "messages": [ {"role": "user", "content": "Hello!"} ] }'5. Configure IP Whitelist (Optional)
Section titled “5. Configure IP Whitelist (Optional)”For enhanced security, configure IP whitelisting in Dashboard → Security.
Only requests from whitelisted IPs will be accepted.
Next Steps
Section titled “Next Steps”- Read the API Reference for detailed endpoints
- Check out SDKs for your programming language
- Visit FAQ for common questions