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.
GET
https://api.hinow.ai/v1/modelsBearerLists 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"
}
]
}| Field | What it tells you |
|---|---|
category | Model modalities: text_to_text, image_to_text, text_to_image… |
cost.type | mtoken charges per million tokens; image generation uses per_image |
cost.input / cost.output | Price per million tokens, in dollars — the same as on the Pricing page |
endpoint | Relative path returned by the catalog. Prefix it with https://api.hinow.ai: for example, https://api.hinow.ai/v1/chat/completions. |
context_length | Size of the context window, in tokens (the same value as context_window) |
supported_parameters | On 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.
Was this page helpful?

