uttapen

Hy3 API: toman pricing and code

tencent/hy3

toolsreasoningjson
Input · per 1M tokens
38,297 toman
Output · per 1M tokens
153,186 toman
One 1,000-word request ≈
249 toman

You are billed for the usage the request actually reported. Prices follow the market. Cached input: 9,574 toman / 1M.Pricing and top-ups

Hy3 example: JSON output against a schema

The example is picked from this model's own capabilities. Drop in your key and it runs as is.

from openai import OpenAI
import json

client = OpenAI(base_url="https://api.uttapen.ir/v1", api_key="sk-up-…")

schema = {
    "name": "ticket",
    "schema": {
        "type": "object",
        "properties": {
            "category": {"type": "string", "enum": ["fani", "mali", "forush"]},
            "priority": {"type": "integer", "minimum": 1, "maximum": 5},
            "summary": {"type": "string"},
        },
        "required": ["category", "priority", "summary"],
        "additionalProperties": False,
    },
    "strict": True,
}

resp = client.chat.completions.create(
    model="tencent/hy3",
    messages=[{"role": "user", "content": "Ticket: "For two days I cannot download my invoice and I was charged twice.""}],
    response_format={"type": "json_schema", "json_schema": schema},
)
print(json.loads(resp.choices[0].message.content))

What is Hy3 good for?

Hy3 is one of Tencent's models. Put "tencent/hy3" in the model field and the rest of your code stays as it is. Hy3 keeps 262,144 tokens in view at once, and that number is what caps the conversation history in your product. A single response can run to 128,000 tokens. On price it sits in the "very cheap" band — cheaper than 91 and dearer than 315 of the other paid models in the catalogue.

What it can do beyond plain text: it supports tool calling, so it can invoke your own functions with valid arguments; it returns schema-valid JSON through response_format, ready to hand to your code; it has a reasoning mode that pays off on multi-step problems, maths and debugging. All of it works through the standard parameters of the official OpenAI SDK — no custom client, no wrapper. Keep in mind that reasoning tokens are output tokens and do appear on the bill.

Pricing is 38,297 toman per 1M input tokens and 153,186 per 1M output tokens. A 1,000-word round trip on Hy3 lands near 249 toman. It supports cached input: repeated context is billed at 9,574 toman per 1M, which matters a lot if your system prompt is long. You are always charged for the usage the request actually reported, never for the estimate, and a failed request costs nothing.

The closest alternative with the same capabilities from a different provider is Qwen3 235B A22B Instruct 2507: Hy3 works out roughly 1× more expensive, and its context window is the same size. Both run on the same key and the same code, so trying the other one is a single string change.

To make the figure concrete: 100,000 toman of credit buys roughly 402 thousand-word requests on Hy3, and every 1,000 toman is about 4,016 words of round trip. A job with one million input tokens and one million output tokens comes to 191,483 toman in total. Filling this model's 262,144-token window costs 10,039 toman on the input side alone, which is the real reason to keep conversation history short.

Its nearest relative in the catalogue is "tencent/hy4-preview", and choosing between those two is where most people hesitate. On a thousand-word request this variant works out 5.1× cheaper (249 against 1,258 toman). The context windows differ too: 262,144 against 1,048,576 tokens. Maximum answer length differs as well: 128,000 against 64,000 tokens. On parameters, this one takes frequency_penalty, logit_bias, min_p, presence_penalty.

Tencent has 7 models in our catalogue; the cheapest is Hy-MT2-1.8B at 83 toman per thousand words and the dearest Hy4 preview at 1,258. Among the less common parameters it accepts logit_bias, max_completion_tokens, min_p, reasoning_effort, repetition_penalty, top_k — all through the standard request body. By context size the nearest option from another provider is Trinity Large Thinking at 262,144 tokens.

Good fits: high-volume work such as classification, tagging and bulk summarising, logic puzzles and code review, agents that reach out to APIs and databases, extracting data against a fixed schema, analysing a long document or codebase in one request.

Provider's own description

Hy3 is a 295B-parameter Mixture-of-Experts model from Tencent (21B active, 192 experts with top-8 routing) built for reasoning, agentic workflows, and real-world production use. It supports a configurable reasoning effort:...

Three real jobs, priced on this model

Each figure is derived from the prices above and moves when they do.

JobTokensCost
One chat turn with a medium history1,500 in + 400 out119 toman
Summarising a ten-page document4,000 in + 600 out245 toman
Classifying a thousand short rows120,000 in + 20,000 out7,659 toman

Price history

DateInput (toman/1M)Output (toman/1M)
2026-09-0738,297153,186
2026-09-0623,93595,741

Every price change for this model is recorded. Toman figures use today's rate.

Frequently asked

How do I call Hy3 from Iran?
Sign up with your mobile number, top the wallet up in toman, create an API key, then in the official OpenAI SDK point base_url at https://api.uttapen.ir/v1 and set model to "tencent/hy3". Nothing else in your code changes.
What does Hy3 cost in toman?
38,297 toman per 1M input tokens and 153,186 toman per 1M output tokens; a 1,000-word request is around 249 toman. You pay for the usage that request actually reported, and a failed request costs nothing.
How much input does Hy3 take?
Up to 262,144 tokens per request, roughly 197k words. A single answer can reach 128,000 tokens.
Does Hy3 support streaming and tool calling?
Streaming (stream=true) works on every model here. This one supports tool calling in the standard OpenAI shape. Structured output through response_format works too.