One API. Every surface.
SDK compatible with the tools you already use. Change a URL. Ship the same code.
import os
import requests
response = requests.post(
"https://api.agentics.co.za/v1/chat/completions",
headers={"Authorization": "Bearer " + os.environ["AGENTICS_API_KEY"]},
json={
"model": "azros-agent",
"messages": [{"role": "user", "content": "Hello!"}]
}
)
print(response.json()["choices"][0]["message"]["content"])
import Agentics from 'agentics-sdk';
const client = new Agentics({
apiKey: process.env.AGENTICS_API_KEY
});
const response = await client.inference.chat({
model: 'azros-agent',
messages: [{ role: 'user', content: 'Hello!' }]
});
console.log(response.choices[0].message.content);
curl https://api.agentics.co.za/v1/chat/completions \
-H "Authorization: Bearer $AGENTICS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "azros-agent",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Migration
Already have code? Keep it.
- Point your existing SDK at
https://api.agentics.co.za/v1 - Swap your key for an
AGENTICS_API_KEY - Set
modelto any catalog ID, likeazros-agent- done
Models and pricing
Pick your burn rate.
Tokens bill against your plan at a transparent multiplier per model.
| Model ID | Best for | Context | Burn | Price |
|---|---|---|---|---|
| azros-ultra | Frontier reasoning, production coding, agents | 128K | 4x | See pricing |
| azros-oracle | Deep reasoning and research | 128K | 4x | See pricing |
| azros-argus | Vision and computer use | 128K | 4x | See pricing |
| azros-ora | Realtime voice | 64K | 3x | See pricing |
| azros-omni | Text, image, and audio in one thread | 64K | 3x | See pricing |
| azros-ethos | Everyday professional work | 128K | 2x | See pricing |
| azros-genome | Long-context code and embeddings | 64K | 2x | See pricing |
| azros-ethos-fast | Low-latency chat at volume | 128K | 1.5x | See pricing |
| azros-agent | Agentic execution, free default | 64K | 1.5x | See pricing |
| azros-ion | Fast small workloads | 128K | 1x | See pricing |
| azros-atom | High-volume pipelines and edge | 128K | 1x | See pricing |
Go deeper