Skip to content

Pricing

What each model costs, per million tokens, and how to estimate the cost of a real workload.

Updated on Aug 09, 2026

Text models are billed by the number of tokens processed. Input tokens include the instructions, messages and other content you send; output tokens correspond to what the model generates. The values below are in dollars per 1 million tokens.

HINOW models

ModelInputOutput
hinow/himaxUS$ 2.26US$ 9
hinow/hinovaUS$ 0.69US$ 7.49
hinow/higenesisUS$ 0.22US$ 0.98

Check the catalog in production

Prices and availability may change. Use GET https://api.hinow.ai/v1/models to read the current value and the modalities enabled for your account.

Specialized models

ModelInputOutputSpecialty
hinow/hivisionUS$ 1.00US$ 3.00Dedicated image input
hinow/hicodeUS$ 0.49US$ 5.48Code generation and transformation

hinow/hivision is the right choice when the input is predominantly visual. hinow/hicode is a specialized option for code automation. Compare both with the general-purpose HINOW models when the task combines text, business rules and code.

Image generation

ModelPriceBilling
hinow/himegiaUS$ 0.082 per imagePer image generated or edited

hinow/himegia bills per image, not per token: US$ 0.082 — the same amount to create and to edit, with a short or long prompt, in any aspect ratio and format. Every POST https://api.hinow.ai/v1/images response carries the cost field with the exact amount for the call. The guided walkthrough is in Image generation.

Other models in the catalog

Availability may vary by account. Query the catalog at runtime to obtain the identifiers, modalities, endpoints and prices currently available:

curl https://api.hinow.ai/v1/models \
  -H "Authorization: Bearer $HINOW_API_KEY"
{
  "data": [
    {
      "id": "hinow/himax",
      "category": ["text_to_text"],
      "cost": { "type": "mtoken", "input": 2.26, "output": 9 },
      "endpoint": "/v1/chat/completions"
    }
  ]
}

The current price comes from the API

GET https://api.hinow.ai/v1/models returns cost.input and cost.output per million tokens for each model. Use these fields in calculators, usage dashboards and model selectors to avoid an outdated copy of the table.

What a call costs in practice

The cost of a call is input tokens × input price + output tokens × output price. Chat Completions responses include usage with both counts. Log this field to measure the real cost of each workflow:

"usage": { "prompt_tokens": 132, "completion_tokens": 60, "total_tokens": 192 }

In this example, the call to hinow/hinova costs 132 × 0.69/1M + 60 × 7.49/1M, approximately US$ 0.00054. With streaming, consume the stream up to the final event to record the usage returned by the API.

How to reduce the bill

  • Use the model that fits the task. Start with HiNova, measure quality and move to HiMax or HiGenesis when the result justifies the change.
  • Define the expected length. An instruction such as "answer in up to 60 words" guides the style and reduces unnecessarily long outputs. Validate the limit in the application when it is mandatory.
  • Trim the history. In long conversations, every call resends previous messages. Summarize or remove turns that no longer change the answer.
  • max_tokens as a safety net. It cuts mid-sentence (finish_reason: "length"), so use it as an operational ceiling, not as the only way to control length.

Which model for which task

The strengths of each model and where each one performs best.

Was this page helpful?
Pricing · HINOW Developers