AxForge documentation
Everything speaks the OpenAI API shape. Point the SDK you already use at
our base URL, swap the key and the model name, and chat, embeddings, images,
speech and music all work behind the same key — served in the EU, with zero
prompt retention.
The API in four lines
| Base URL | https://api.axforge.ai/v1 |
| Auth | Authorization: Bearer YOUR_AXFORGE_KEY — keys come from the waiting list |
| Region | x-axforge-region: eu-se-1 — pinned on your key, echoed on every response |
| Retention | Zero. Prompts and completions are never written to disk, logged, or trained on — the commitment |
One request, end to end
$ curl https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "qwen3.8-27b-nvfp4",
"messages": [{"role": "user", "content": "Hello from Stockholm"}]}'
That is the whole integration. The quickstart
does the same with the OpenAI Python SDK in five minutes.
Every endpoint behind one key
| Capability | Endpoint | Model | Price |
| Chat, tools, vision | /v1/chat/completions | qwen3.8-27b-nvfp4 | €0.29 / €1.77 per 1M |
| Embeddings (1024-dim) | /v1/embeddings | qwen3-embed | €0.015 / 1M |
| Image generation | /v1/images/generations | ernie-image-turbo | €0.02 / image |
| Image editing | /v1/images/edits | flux2-klein-4b | €0.02 / image |
| Speech to text | /v1/audio/transcriptions | whisper | €0.005 / minute |
| Text to speech | /v1/audio/speech | piper | €2.95 / 1M characters |
| Music generation | /v1/audio/music | minimax-music3 | €0.09 / track |
Chat prices are launch pricing, per 1M input / output tokens.
Full details on Models & pricing.
Start
| Quickstart | Key, SDK, first streamed completion — five minutes. |
| Glossary | Every term you meet — tokens, embeddings, regions, the trust vocabulary — in plain language. |
| Models & pricing | Every served model, its API name and price, plus models deployable on dedicated hardware. |
Use AxForge with your stack
Because everything speaks the OpenAI shape, your existing tools work by
changing the base URL to api.axforge.ai/v1. Step-by-step guides:
API reference
| Chat completions | Request shape, streaming, tool calls, reasoning output, image input. |
| Embeddings | 1024-dimension vectors, batching, curl and Python. |
| Image generation & editing | PNG generation with ERNIE, instruction edits with FLUX — and when to use which. |
| Speech & music | Transcription, text to speech, and full music tracks with lyrics. |
Platform
What these docs promise
Every number here is real: prices are the prices, latencies are measured
on our production hardware, and limits are the limits we actually serve
today. Where something is not on the shared API, the page says so plainly.
If you find a gap between these docs and the API's behavior, that is a bug —
tell an engineer.