Skip to content

List models

Check the models available to the account, with pricing, modalities and the compatible endpoint.

Updated on Sep 16, 2026

Use the catalog to discover the models available to your account. Each item reports the public identifier, the modalities, the compatible endpoint and the current price. Because the catalog can change, query it at runtime when your application shows options to the user.

GEThttps://api.hinow.ai/v1/modelsBearer

Lists the models available to the account, with pricing and modalities.

Respostas

200List of models
{
  "data": [
    {
      "id": "hinow/himax",
      "object": "model",
      "owned_by": "hinow",
      "category": ["text_to_text"],
      "cost": { "type": "mtoken", "input": 2.26, "output": 9 },
      "endpoint": "/v1/chat/completions"
    }
  ]
}

The fields

FieldWhat it tells you
categoryModel modalities: text_to_text, image_to_text, text_to_image
cost.typemtoken charges per million tokens; image generation uses per_image
cost.input / cost.outputPrice per million tokens, in dollars — the same as on the Pricing page
endpointRelative path returned by the catalog. Prefix it with https://api.hinow.ai: for example, https://api.hinow.ai/v1/chat/completions.
context_lengthSize of the context window, in tokens (the same value as context_window)
supported_parametersOn chat models, the fields the call accepts. Models with reasoning control list reasoning, reasoning_effort and include_reasoning; see [Reasoning](/en/api/models/text-and-code/reasoning)

The pricing table that never goes stale

Read cost straight from the catalog in calculators and selectors. For integrations that require predictable behavior, keep an explicit list of approved models and test changes before altering the default in production.