Skip to content

Quick Start Guide

Get up and running with CPAI in 5 minutes.

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

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.

Use the API with your favorite HTTP client:

Terminal window
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!"}
]
}'

For enhanced security, configure IP whitelisting in Dashboard → Security.

Only requests from whitelisted IPs will be accepted.

  • Read the API Reference for detailed endpoints
  • Check out SDKs for your programming language
  • Visit FAQ for common questions