Getting Started
Quick Start
Last updated March 3, 2026
Get up and running with Cencori in under 5 minutes.
Get your first AI request running in under 5 minutes.
1. Create an Account
Sign up at cencori.com/signup and create your first project.
2. Get Your API Key
Navigate to your project settings and copy your API key.
csk_live_...3. Install the SDK
npm install cencori4. Make Your First Request
import { Cencori } from 'cencori';
const cencori = new Cencori({
apiKey: 'csk_live_...'
});
const response = await cencori.ai.chat({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Hello!' }]
});
console.log(response.content);5. View in Dashboard
All requests are logged in your dashboard with:
- Full prompt and response
- Token usage and costs
- Latency metrics
- Security scan results
Next Steps
| Topic | Description |
|---|---|
| AI Gateway | Learn about multi-provider routing |
| Cencori SDK | Explore SDK methods |
| Security | Configure security rules |
| Memory | Build RAG applications |