Developers

Designed by engineers,
for engineers shipping AI.

One OpenAI-compatible API, every frontier model, with first-class TypeScript and Python SDKs. Open spec, predictable behavior, and a CLI that doesn't get in your way.

app.py
from openai import OpenAI

client = OpenAI(
  base_url="https://api.build-blue.uk/v1",
  api_key=os.environ["BLUEBOX_KEY"],
)

response = client.chat.completions.create(
  model="claude-opus-4",
  fallback=["gpt-5", "gemini-2.5-pro"],
  messages=["role": "user", "content": "Ship it."],
)

print(response.choices[0].message.content)
SDKs

Use the language you already love.

Python
pip install openai
Node.js
npm i openai
Go
go get github.com/openai/openai-go
Rust
cargo add async-openai
Java
implementation "com.openai:openai-java:..."
cURL
no install needed

Build something great. We'll handle the plumbing.

Full SDK access on every plan. Migrate in an afternoon, save in a week.