Docs/Documentation

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.

Codetext
csk_live_...

3. Install the SDK

Codetext
npm install cencori

4. Make Your First Request

Codetext
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

TopicDescription
AI GatewayLearn about multi-provider routing
Cencori SDKExplore SDK methods
SecurityConfigure security rules
MemoryBuild RAG applications