One ck- key works with any OpenAI-compatible client. Point the base URL here, pick a model, done.
https://conduit-api.aurixel.ai/v1Create an account in seconds — free starter credit included.
Grab a ck-… key on the API Keys page.
Use the snippet below in code or your editor.
Replace ck-YOUR_KEY with your key. Any OpenAI SDK works.
curl https://conduit-api.aurixel.ai/v1/chat/completions \
-H "Authorization: Bearer ck-YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [{"role": "user", "content": "Hello!"}]
}'Drop these into your favorite AI client.
~/.codex/config.tomlmodel = "gpt-5.5" model_provider = "aurixel" [model_providers.aurixel] name = "Aurixel" base_url = "https://conduit-api.aurixel.ai/v1" wire_api = "responses" requires_openai_auth = false experimental_bearer_token = "ck-YOUR_KEY"
Tip — after signing in, Integrations generates a key and fills these in with one click.