Models
Models are the LLM configurations that power agents. These are managed by Aiqaramba and this endpoint lets you query which models are currently available.
Overview
Models are the LLM configurations that power agents. These are managed by us and are not user-configurable. This endpoint lets you query which models are currently available and which one is the default.
In most cases you should use the default model. It is the one we have tested most extensively and will give you the best results. Specifying a different model is only useful if you have a specific reason to do so.
List available models
Status Codes
| Code | Description |
|---|---|
200 | OK |
Response Body
[
{
"id": "gemini-2.5-flash",
"provider": "gemini",
"name": "Gemini 2.5 Flash",
"max_output_tokens": 8192,
"thinking_budget": 0,
"thinking_level": "",
"tokens_per_minute": 1900000,
"requests_per_minute": 0,
"is_enabled": true,
"is_default": true
}
]GET
/api/v1/modelscURL
Response