Docs
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/models

Response

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

FieldValueMeaning
idtalos-previewModel id
created1744588800Creation timestamp, epoch seconds
owned_byablaticOwner
context_window200000Max context in tokens
multimodaltrueAccepts 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.

Next