API Reference

Route prompts across every frontier model from one endpoint. REST API and webhooks are on the roadmap — here's a preview of what's coming.

A single endpoint
for every model.

POST/v1/route

Send a prompt and let the Brain pick the best model — or specify one directly.

curl https://api.openbrain.ai/v1/route \
  -H "Authorization: Bearer $OPEN_BRAIN_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Summarize this contract in 3 bullets",
    "model": "auto",
    "focus": "analysis"
  }'
POST/v1/everyone

Fan out a single prompt to multiple models and compare responses.

curl https://api.openbrain.ai/v1/everyone \
  -H "Authorization: Bearer $OPEN_BRAIN_KEY" \
  -d '{
    "prompt": "Best framework for a realtime app?",
    "models": ["claude", "gpt-4o", "gemini"]
  }'
GET/v1/models

List all available models and their current status.

curl https://api.openbrain.ai/v1/models \
  -H "Authorization: Bearer $OPEN_BRAIN_KEY"

The public API is in private beta. Want early access?

Request API access

Start in the workspace

You don't need the API to get started. The full Meridian workspace is live and free to use today.

Open Meridian Read the docs