DEVELOPERS

HAIMAKER DEVELOPER RESOURCES

One OpenAI-compatible endpoint for 200+ models. Point your SDK at https://api.haimaker.ai/v1 and every model in the catalog works with no other code changes.

GET YOUR API KEY

QUICKSTART

The gateway speaks the OpenAI protocol, so any OpenAI SDK works as-is: change base_url, use your Haimaker key, and name any model from the catalog. Set the model to haimaker/auto and the auto-router picks the optimal model per request by cost, speed, or capability.

READ THE FULL DOCS
from openai import OpenAI

client = OpenAI(
    base_url="https://api.haimaker.ai/v1",
    api_key="YOUR_HAIMAKER_API_KEY",
)

response = client.chat.completions.create(
    model="haimaker/auto",  # or any model from the catalog
    messages=[{"role": "user", "content": "Hello"}],
)

START BUILDING

Grab a key, change one line, and you're on every model.

GET YOUR API KEY