Use AxForge with your stack

AxForge speaks the OpenAI API shape, so the tools you already use work here. In almost every case the whole integration is three changes: the base URL, your key, and a model name.

The one pattern behind every guide

Whatever the tool, you are telling it to send OpenAI-style requests to us instead of OpenAI:

Set thisTo
Base URLhttps://api.axforge.ai/v1
API keyyour AxForge key (orx_live_…)
Modelchat · embeddings · or an exact version

The fastest check that it is wired correctly, from any shell:

$ curl https://api.axforge.ai/v1/chat/completions \
    -H "Authorization: Bearer $AXFORGE_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"model":"chat","messages":[{"role":"user","content":"ping"}]}'

A JSON reply with a choices array means you are connected. From there, pick your tool.

SDKs

Coding assistants

Chat UIs & terminals

Gateways & proxies

A note on API shapes. Nearly everything speaks the Chat Completions API, which AxForge serves. Two popular tools speak a different shape — OpenAI's Codex CLI uses the Responses API and Claude Code the Anthropic Messages API — and AxForge serves both of those natively too (/v1/responses, /v1/messages), so they point straight at us. See the Codex & Claude Code guide.

Anything else

If a tool can point at a custom OpenAI base URL — another CLI, a workflow node, a no-code builder, a gateway such as the Vercel AI Gateway — it works the same way: base URL, key, model. When in doubt, use the curl check above with your tool's base-URL and key fields, then fill them into the tool. Stuck? Talk to an engineer.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms