OpenAI-compatible

MaxAI API docs.

Connect agents, scripts, IDE tools, and OpenAI-compatible SDKs to MaxAI.

Plan usage shape

Use your API key and monitor quota in the console.

Base/v1
Modelmimo-v2.5-pro
AuthBearer key

Connection

Base URL: https://app.maximalabs.tech/v1
Model: mimo-v2.5-pro
Header: Authorization: Bearer YOUR_API_KEY

cURL

curl https://app.maximalabs.tech/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"mimo-v2.5-pro","messages":[{"role":"user","content":"Hello"}]}'

Python

from openai import OpenAI
client = OpenAI(base_url="https://app.maximalabs.tech/v1", api_key="YOUR_API_KEY")
res = client.chat.completions.create(model="mimo-v2.5-pro", messages=[{"role":"user","content":"Hello"}])
print(res.choices[0].message.content)