Hunyuan 3 (DeepInfra) API

DeepInfra · serves hy3

Pricing

Input / 1M$0.10
Output / 1M$0.43
Blended / 1M$0.54cheapest of 2
Cached input / 1M$0.03
Context window262,144 tokens

textfunction-calling

Price verified 2026-09-15 (0 days ago) · sourcesources disagree

Get an API key at DeepInfra →

Sources

Sources disagree by 33% on this price. The figure above is the primary source; cross-check before relying on it.

SourceInput / 1MOutput / 1MVerified
OpenRouter$0.10$0.432026-09-15
LiteLLM$0.14$0.582026-09-14
models.dev$0.14$0.582026-09-14

Independent sources disagree — treat with caution.

Call it

OpenAI-compatible endpoint — set DEEPINFRA_API_KEY.

curl https://api.deepinfra.com/v1/openai/chat/completions \
  -H "Authorization: Bearer $DEEPINFRA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "tencent/Hy3",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
from openai import OpenAI  # pip install openai

client = OpenAI(
    base_url="https://api.deepinfra.com/v1/openai",
    api_key="...",  # DEEPINFRA_API_KEY
)
resp = client.chat.completions.create(
    model="tencent/Hy3",
    messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)

Price unchanged since 2026-09-15 — 1 point on record.

Use this data

Raw JSON for this page: hy3.json. Free to reuse under CC BY 4.0 with attribution to apipriceindex.com.