API Reference
Models
The model id returned by the models endpoint and its fields
GET /v1/models lists the available models. This endpoint needs no authentication.
Request
curl https://api.ablatic.ai/v1/modelsResponse
The endpoint returns a single model. Its id is talos-preview; talos is accepted as an alias in the model field of requests.
{
"object": "list",
"data": [
{
"id": "talos-preview",
"object": "model",
"created": 1744588800,
"owned_by": "ablatic",
"context_window": 200000,
"multimodal": true,
"modes": ["fast", "thinking"]
}
]
}Fields
| Field | Value | Meaning |
|---|---|---|
id | talos-preview | Model id |
created | 1744588800 | Creation timestamp, epoch seconds |
owned_by | ablatic | Owner |
context_window | 200000 | Max context in tokens |
multimodal | true | Accepts text, image, and video input. Output is text only |
modes | ["fast", "thinking"] | Reasoning modes, selected per request |
There is one model. You do not switch models to change how hard it thinks. You pick a reasoning mode per request with reasoning_effort on the chat endpoint, or with the Anthropic model-name mapping on the messages endpoint. See Reasoning modes.