Access powerful AI models with built-in privacy protection. OpenAI-compatible API with European data residency and PII anonymization.
Built-in PII anonymization. Your data is anonymized before processing and never stored.
Use your existing OpenAI SDK. Just change the base URL and API key.
Access GPT-4, Claude, Gemini, Llama, and more through a single API.
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)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 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?"}
]
}'