One API key. SkyMind 2.0 plus three legacy tiers. OpenAI-compatible. See our benchmarks. Works with any SDK in any language. Get running in under 60 seconds.
csky_xxxxxxxxxxxxxxxx."agents": 5 for built-in multi-agent orchestration.# pip install openai from openai import OpenAI client = OpenAI( api_key="csky_YOUR_KEY", base_url="https://centrosky.com/v1" ) response = client.chat.completions.create( model="skymind-2", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
// npm install openai import OpenAI from "openai"; const client = new OpenAI({ apiKey: "csky_YOUR_KEY", baseURL: "https://centrosky.com/v1" }); const r = await client.chat.completions.create({ model: "skymind-2", messages: [{ role: "user", content: "Hello!" }] }); console.log(r.choices[0].message.content);
curl https://centrosky.com/v1/chat/completions \ -H "Authorization: Bearer csky_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "skymind-2", "messages": [{"role": "user", "content": "Hello!"}] }'
api_key and add base_url. Everything else stays the same — your prompts, your logic, your error handling. CentroSky is a drop-in replacement.
| Tier | Calls/mo | SP included | Cost |
|---|---|---|---|
| Free | 1,000 | 10 SP | Free |
| Starter | 10,000 | 500 SP | 100 CENTRO/mo |
| Pro | 100,000 | 5,000 SP | 400 CENTRO/mo |
| Business | Unlimited | 10,000 SP | 1,200 CENTRO/mo |
Pay with CENTRO. When SP runs out, buy more anytime:
| SP Pack | Cost | sp+ calls |
|---|---|---|
| 100 SP | 10 CENTRO | ~2,000 |
| 500 SP | 40 CENTRO | ~10,000 |
| 2,000 SP | 120 CENTRO | ~40,000 |
| 10,000 SP | 500 CENTRO | ~200,000 |
| Endpoint | Method | Auth |
|---|---|---|
| /v1/chat/completions | POST | API key |
| /v1/models | GET | None |
| /v1/usage | GET | API key |
| /v1/keys/create | POST | Session |
| /v1/keys | GET | Session |
| /v1/plans | GET | None |
Sign up, get your key, and start calling the API in under a minute.
Get your API key