Citadelis API

Access powerful AI models with built-in privacy protection. OpenAI-compatible API with European data residency and PII anonymization.

Why Citadelis API?

Privacy-First

Built-in PII anonymization. Your data is anonymized before processing and never stored.

OpenAI Compatible

Use your existing OpenAI SDK. Just change the base URL and API key.

Multiple Models

Access GPT-4, Claude, Gemini, Llama, and more through a single API.

Quick Start

PyPython

from openai import OpenAI

client = OpenAI(
    base_url="https://citadelis.eu/api/v1",
    api_key="citadel_sk_your_key_here"
)

response = client.chat.completions.create(
    model="Meta-Llama-3_3-70B-Instruct",
    messages=[
        {"role": "user", "content": "Hello, how are you?"}
    ]
)

print(response.choices[0].message.content)

JSJavaScript / Node.js

import OpenAI from 'openai';

const client = new OpenAI({
  baseURL: 'https://citadelis.eu/api/v1',
  apiKey: 'citadel_sk_your_key_here'
});

const response = await client.chat.completions.create({
  model: 'Meta-Llama-3_3-70B-Instruct',
  messages: [
    { role: 'user', content: 'Hello, how are you?' }
  ]
});

console.log(response.choices[0].message.content);

$cURL

curl https://citadelis.eu/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer citadel_sk_your_key_here" \
  -d '{
    "model": "Meta-Llama-3_3-70B-Instruct",
    "messages": [
      {"role": "user", "content": "Hello, how are you?"}
    ]
  }'

API Features

OpenAI SDK Compatible
Streaming Responses
PII Anonymization
Multiple AI Providers
European Data Residency
Usage Tracking
Rate Limiting
Budget Controls