Documentation

Meibel developer documentation

Deploy a policy plane in front of your LLM calls in under 15 minutes. Start with the quickstart or browse by topic.

Quickstart guide API reference
Frequently referenced
Five-minute integration

Point any OpenAI-compatible client at your Meibel proxy endpoint. One environment variable change.

Before (direct API call)
import openai

client = openai.OpenAI(
  api_key="sk-...",
  base_url="https://api.openai.com/v1"
)
After (through Meibel policy plane)
import openai

client = openai.OpenAI(
  api_key="sk-...",
  # Route through Meibel — all policy controls fire automatically
  base_url="https://proxy.meibelai.org/v1/openai",
  default_headers={"X-Meibel-Tenant": "finance-wealth"}
)