Put every AI request under policy.
Cardean Gateway is a Rust-native control plane between your applications and AI providers. Use one OpenAI-compatible interface to route traffic, protect sensitive data, enforce policy, control usage and retain a useful audit trail.
Runs self-managed or in controlled cloud environments.
Keep the interfaces your teams already use.
Works with applications and tools built around OpenAI-compatible APIs, including common Python and TypeScript SDK patterns.
What Cardean Gateway delivers.
Govern access
Decide which teams, applications and environments may call which models, under which limits and with which credentials.
Protect data in motion
Inspect and transform requests before they leave your control boundary. Apply rules for sensitive fields, prohibited content and approved destinations.
Keep AI services available
Use routing, timeouts, retries, fallbacks and health signals to reduce the impact of provider or model failure.
Understand usage and cost
Attribute requests, tokens, latency and spend to the projects, teams and services that generated them.
Retain meaningful evidence
Record policy decisions, configuration changes and request metadata in a form that supports operational review and investigation.
One interface for applications. One policy path for the organisation.
- Connect applications to a Cardean endpoint using a familiar API shape.
- Identify the calling project, service, team or environment.
- Evaluate the request against access, data, model, rate and budget policy.
- Route approved traffic to the appropriate provider or deployment.
- Observe the response, latency, usage, policy outcome and relevant metadata.
- Record the evidence needed for operations, cost control and review.
Run the control plane where your requirements demand.
Cardean Cloud
Managed by Cardean for teams that want the fastest operational path.
Private environment
Deploy into a customer-controlled cloud account or isolated environment with Cardean support.
Available for selected design partners.
Self-managed
Operate Cardean Gateway on infrastructure your team controls.
Built for the teams accountable for AI in production.
Platform engineering
Offer an internal AI service with reusable controls.
Security and privacy
Put enforceable decisions around data movement, provider access and logging.
AI governance
Connect approved-use policy to actual model traffic and evidence.
Product teams
Keep a familiar interface and avoid rebuilding provider integrations and controls.
Change the endpoint, then add policy deliberately.
Illustrative request — the documentation has the full interface.
# Illustrative request — endpoint and model alias shown are examples only. curl https://gateway.example/v1/chat/completions \ -H "Authorization: Bearer $CARDEAN_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "approved-model-alias", "messages": [ {"role": "user", "content": "Summarise this case note."} ] }'