Skip to content
Zertru Logo
Documentation

Welcome to Zertru Docs

Enterprise-grade AI security documentation. Learn how to protect your applications with zero-trust architecture, real-time threat detection, and compliance-ready governance.

What is Zertru?

Zertru is a production-grade AI security and governance platform built for enterprise adoption. It acts as an intelligent, policy-enforcing proxy layer between your applications and AI providers (OpenAI, Anthropic, Google Gemini, Mistral, and private models).

Every AI request flows through Zertru, never around it. This gives your organization complete visibility, real-time threat detection, automated data protection, and compliance evidence for SOC 2, HIPAA, GDPR, and ISO 27001.

Core Benefits

Full Audit Visibility

Complete transparency over every prompt and completion with immutable audit logs

Real-Time Threat Detection

Defend against jailbreaks, prompt injection, and data exfiltration in real-time

Automated PII Protection

Detect and redact sensitive data before it reaches external LLM providers

Policy Enforcement

Organization, team, and user-level governance rules enforced in real-time

Get Started

5-minute quickstart guide to connect your app

Architecture

Deep dive into system design and components

Security

Learn about security features and compliance

Integration in 2 Steps

Integrating Zertru is as simple as changing your API endpoint and adding an auth header. No application rewrites, no logic changes.

TypeScript
import OpenAI from 'openai';

const openai = new OpenAI({
  apiKey: process.env.OPENAI_API_KEY,
  baseURL: 'https://gateway.zertru.com/v1', // <-- Point to Zertru
  defaultHeaders: {
    'X-Zertru-Auth-Token': process.env.ZERTRU_API_KEY // <-- Authenticate
  }
});

const response = await openai.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'My email is admin@company.com' }],
});

That's it! Your requests now flow through Zertru's security pipeline automatically, with PII detection, prompt injection defense, policy enforcement, and complete audit logging.

Trusted by Enterprise

Zertru is used by leading organizations across finance, healthcare, legal, and technology sectors to secure their AI adoption and ensure compliance.

Featured case studies and customer logos coming soon

Was this page helpful?