Build

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.

  1. Point your existing SDK at https://api.agentics.co.za/v1
  2. Swap your key for an AGENTICS_API_KEY
  3. Set model to any catalog ID, like azros-agent - done
Models and pricing

Pick your burn rate.

Tokens bill against your plan at a transparent multiplier per model.

Model IDBest forContextBurnPrice
azros-ultraFrontier reasoning, production coding, agents128K4xSee pricing
azros-oracleDeep reasoning and research128K4xSee pricing
azros-argusVision and computer use128K4xSee pricing
azros-oraRealtime voice64K3xSee pricing
azros-omniText, image, and audio in one thread64K3xSee pricing
azros-ethosEveryday professional work128K2xSee pricing
azros-genomeLong-context code and embeddings64K2xSee pricing
azros-ethos-fastLow-latency chat at volume128K1.5xSee pricing
azros-agentAgentic execution, free default64K1.5xSee pricing
azros-ionFast small workloads128K1xSee pricing
azros-atomHigh-volume pipelines and edge128K1xSee pricing
Go deeper

Everything a build needs.