Base URL
https://api.purebridge.uk
Use the API domain for programmatic traffic. Manage accounts, keys, and billing in the console.
Developer access
OpenAI-compatible API reference for developers and power users. This page keeps endpoint, SDK, CLI, agent, and error-handling details.
API Key · For individual developers and lightweight projects.
If you only want direct chat, writing, or image generation, start with the user guide or open Chatbox. This page is for users who need API Key, Base URL, SDK, CLI, IDE agent, and automation setup.
Base URL
Use the API domain for programmatic traffic. Manage accounts, keys, and billing in the console.
Authentication
Create an API KEY in the console, then send it in the Authorization header.
Compatibility
Works with OpenAI SDK style base_url, bearer authentication, and JSON request/response payloads.
Quickstart
Create an account, generate an API KEY, then configure base_url in the OpenAI SDK.
Endpoints
PureBridge keeps the public contract small and predictable. These are the routes currently documented for user-facing integrations.
/v1/models
Returns enabled PureBridge model IDs that can be used in completion requests.
/v1/chat/completions
Streaming supported
Accepts an OpenAI-style chat payload; supports stream: true SSE responses and stream: false JSON responses.
/health
Returns a lightweight OK signal for deployment and probe checks.
Request sample
Chat completions support stream: true for interactive responses. Use stream: false when you want a simple header-verification request.
Model values shown here are PureBridge model IDs returned by GET /v1/models. Use them exactly as returned; they may be routing aliases rather than upstream provider release names.
curl https://api.purebridge.uk/v1/chat/completions \
-H "Authorization: Bearer sk-xxxxxxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"model": "codex-auto-review",
"messages": [
{
"role": "system",
"content": "You are a concise assistant."
},
{
"role": "user",
"content": "Say hello from PureBridge."
}
],
"stream": true
}'
Response sample
data: {"id":"chatcmpl_123","object":"chat.completion.chunk","model":"codex-auto-review","choices":[{"index":0,"delta":{"role":"assistant"},"finish_reason":null}]}
data: {"id":"chatcmpl_123","object":"chat.completion.chunk","model":"codex-auto-review","choices":[{"index":0,"delta":{"content":"Hello from PureBridge."},"finish_reason":null}]}
data: {"id":"chatcmpl_123","object":"chat.completion.chunk","model":"codex-auto-review","choices":[{"index":0,"delta":{},"finish_reason":"stop"}]}
data: [DONE]
Verifiable request
When the selected model routes to the official OpenAI upstream, PureBridge passes through the x-request-id returned by OpenAI. You can also send X-Client-Request-Id so your own trace id is available in upstream troubleshooting.
verify.sh
export PB_API_KEY="sk-xxxxxxxxxxxxxxxxxxxxxxxx"
CLIENT_REQUEST_ID="pb-verify-$(date +%s)"
BODY='{"model":"codex-auto-review","messages":[{"role":"user","content":"ping"}],"stream":false}'
printf "%s" "$BODY" | shasum -a 256
curl -sS -D - -o /tmp/purebridge-verify.json https://api.purebridge.uk/v1/chat/completions \
-H "Authorization: Bearer $PB_API_KEY" \
-H "Content-Type: application/json" \
-H "X-Client-Request-Id: $CLIENT_REQUEST_ID" \
--data-binary "$BODY" \
| grep -Ei '^(x-request-id|openai-|x-ratelimit|date):'
Enabled model IDs
Model values shown here are PureBridge model IDs returned by GET /v1/models. Use them exactly as returned; they may be routing aliases rather than upstream provider release names.
Models payload
{
"object": "list",
"data": [
{
"id": "codex-auto-review",
"object": "model",
"owned_by": ""
},
{
"id": "gpt-5.4-mini",
"object": "model",
"owned_by": ""
},
{
"id": "gpt-5.5",
"object": "model",
"owned_by": ""
}
]
}
Integration details
Keep implementation simple: one API domain, bearer authentication, explicit model selection, and normal HTTP error handling.
API KEY usage
The API Key flow is: purchase or redeem a plan, create an API KEY, configure PureBridge as an OpenAI-compatible provider, then monitor requests, tokens, and cost from the usage page.
Agent tool setup
Most CLI, IDE agent, and workflow tools need four fields: Provider set to OpenAI Compatible or Custom OpenAI, Base URL set to the PureBridge /v1 URL, API KEY set to your personal API KEY, and Model set to a value returned by /v1/models.
Terminal coding agent
Best for repository edits, code explanation, refactors, tests, and longer coding automation.
CLI pair programming
Good for small Git-aware changes, focused tests, diff explanations, and pre-commit cleanup.
IDE assistant
Good for VS Code / JetBrains code chat, completions, local edits, and project rules.
VS Code agent
Good for local agents that read and write files, run shell commands, use browser tools, or execute multi-step tasks.
Automation and workflows
Good for note processing, message summaries, daily reports, personal bots, scheduled jobs, and low-code automation.
Config snippets
These examples are generated from the current site API domain and model list. Replace sk-xxxxxxxxxxxxxxxxxxxxxxxx with an API KEY created in your API Key workspace.
Useful for SDKs and CLI tools that read OpenAI-compatible settings from the shell.
export OPENAI_API_KEY="sk-xxxxxxxxxxxxxxxxxxxxxxxx"
export OPENAI_BASE_URL="https://api.purebridge.uk/v1"
export PUREBRIDGE_MODEL="codex-auto-review"
Use the PureBridge base URL exactly like an OpenAI-compatible provider.
from openai import OpenAI
client = OpenAI(
api_key="sk-xxxxxxxxxxxxxxxxxxxxxxxx",
base_url="https://api.purebridge.uk/v1",
)
response = client.chat.completions.create(
model="codex-auto-review",
messages=[{"role": "user", "content": "Say hello from PureBridge."}],
stream=True,
)
For tools that provide an OpenAI-compatible or custom OpenAI provider form.
Provider: OpenAI Compatible / Custom OpenAI
Base URL: https://api.purebridge.uk/v1
API Key: sk-xxxxxxxxxxxxxxxxxxxxxxxx
Model: codex-auto-review
Streaming: On for interactive chat; off for header verification
Use a separate CODEX_HOME when you want PureBridge isolated from another Codex setup.
model_provider = "PureBridge"
model = "codex-auto-review"
[model_providers.PureBridge]
name = "PureBridge"
base_url = "https://api.purebridge.uk/v1"
wire_api = "responses"
requires_openai_auth = true
# auth.json
{"OPENAI_API_KEY":"sk-xxxxxxxxxxxxxxxxxxxxxxxx"}
For OpenAI-compatible chat-completions providers, opencode uses the AI SDK compatible provider shape.
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"purebridge": {
"npm": "@ai-sdk/openai-compatible",
"name": "PureBridge",
"options": {
"baseURL": "https://api.purebridge.uk/v1",
"apiKey": "{env:OPENAI_API_KEY}"
},
"models": {
"codex-auto-review": {
"name": "codex-auto-review"
}
}
}
},
"model": "purebridge/codex-auto-review"
}
Scenario focus
Next step
Register an account, create an API KEY in App Workspace, then call the API domain.
Notes