Route your first request.

Create an API key in about 60 seconds. No credit card required.

Checking hosted capacity.

1. Create your key.

Sign in with GitHub or email, then generate an sk_sage_* key. Choose a paid plan only when you need additional hosted usage.

2. Set the endpoint.

Use your generated sk_sage_* key and start with sage-router/auto.

Environment
export OPENAI_BASE_URL=https://api.tekiz.ai/v1
export OPENAI_API_KEY=sk_sage_your_key_here
export OPENAI_MODEL=sage-router/auto

3. Send one request.

A successful response confirms the key and available route.

Curl
curl https://api.tekiz.ai/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "sage-router/auto",
    "messages": [
      {"role": "user", "content": "Reply with one sentence about Tekiz."}
    ]
  }'

Next

Connect your client.

Follow the dedicated Codex setup guide or browse all integrations. For bounded parallel work, select sage-router/fusion.

Request errors: troubleshooting.