Quickstart

Make your first request through condense in a couple of minutes, then pick where to go next.

Point your SDK's base URL at a condense provider route, send your condense key in X-Condense-Auth-Token, and keep passing your provider key. The request and response shapes are unchanged.

Send your first request
from openai import OpenAI

client = OpenAI(
    api_key="sk-...",                                # your upstream OpenAI key
    base_url="https://api.condense.chat/openai/v1",
    default_headers={"X-Condense-Auth-Token": "ak_..."},
)

resp = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "hi"}],
)
print(resp.choices[0].message.content)

The Anthropic route works the same, point base_url at /anthropic and send your sk-ant-… key.

Start building