Frontier AI inference. Lowest price.

We source reserved capacity and enterprise contracts across AI providers, then expose them through one OpenAI-compatible API. You get Claude, GPT-5, and Codex at prices retail buyers can't access.

Open signup. Add a card to unlock $1 in trial credit, then top up from $10 when you need more.

Integration

Same SDK. Same code.
Better price.

codelace is OpenAI-compatible. Set two environment variable and your existing code works — no migration, no new library.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.codelace.com/v1",
    api_key="cl_your_key",
)

stream = client.chat.completions.create(
    model="anthropic/claude-opus-4.6",
    messages=[{"role": "user", "content": "Hello"}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")