Use your API key with any Anthropic- or OpenAI-compatible client.
Base URL: https://aethercode.my/v1
API key: create or copy it in your dashboard.
Model: choose one of the active models below.
curl https://aethercode.my/v1/messages \
-H "x-api-key: $AETHERCODE_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "content-type: application/json" \
-d '{"model":"opus-5","max_tokens":1024,"messages":[{"role":"user","content":"Hello!"}]}'
from openai import OpenAI
client = OpenAI(
base_url="https://aethercode.my/v1",
api_key="YOUR_AETHERCODE_KEY",
)
response = client.chat.completions.create(
model="opus-5",
messages=[{"role": "user", "content": "Hello!"}],
)
Set these environment variables, then restart Claude Code:
export ANTHROPIC_BASE_URL="https://aethercode.my" export ANTHROPIC_AUTH_TOKEN="YOUR_AETHERCODE_KEY"
On Windows, set the same variables in PowerShell or your system environment. Claude Code adds the required API path itself.
opus-5 · Opus 5claude-opus-4.8 · Claude Opus 4.8claude-sonnet-5 · Claude Sonnet 5claude-sonnet-4.6 · Claude Sonnet 4.6
gpt-5.6-sol · GPT 5.6 Solgpt-5.6-terra · GPT 5.6 Terragpt-5.6-luna · GPT 5.6 Lunagpt-5.5 · GPT 5.5gpt-5.4 · GPT 5.4gpt-5.3-codex · GPT 5.3 Codexgpt-5.4-mini · GPT 5.4 Mini
Need help? Contact us through FunPay.