OpenAI Compatible
Fully compatible with the OpenAI API format. No code changes needed — just swap your base_url.
OpenAI-compatible API, one-stop access to Claude, GPT and more. Get started in minutes.
Install the SDK and send your first request:
pip install openainpm install openaifrom openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://wickham.ai/v1"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me about Wickham.ai."}
]
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
apiKey: "YOUR_API_KEY",
baseURL: "https://wickham.ai/v1"
});
const response = await client.chat.completions.create({
model: "gpt-4o-mini",
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: "Tell me about Wickham.ai." }
]
});
console.log(response.choices[0].message.content);curl https://wickham.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-4o-mini",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Tell me about Wickham.ai."}
]
}'| Model | Provider | Description |
|---|---|---|
gpt-4o | OpenAI | Multimodal flagship, supports image input |
gpt-4o-mini | OpenAI | Cost-effective, great for everyday chat |
gpt-4.1 | OpenAI | 1M token context window |
gpt-4.1-mini | OpenAI | Long-context lightweight version |
claude-opus-4-7 | Anthropic | Most powerful reasoning |
claude-sonnet-4-6 | Anthropic | Balanced performance & speed — recommended |
claude-haiku-4-5-20251001 | Anthropic | Fast & lightweight for high-concurrency |
Unified Access
One API Key to access Claude, GPT and other leading AI models — no need to manage multiple accounts separately.
Great Documentation
Clear, example-rich docs with Python, Node.js and cURL samples to get you up and running fast.
Quick Deployment
Built on the OpenAI compatibility standard — minimal changes to your existing code, migrate in minutes.