All prompts and completions for this model are logged by the provider and may be used to improve the model.

Hunter Alpha

openrouter/hunter-alpha

Released Mar 11, 20261,048,576 context
$0/M input tokens$0/M output tokens

Hunter Alpha is a 1 Trillion parameter + 1M token context frontier intelligence model built for agentic use. It excels at long-horizon planning, complex reasoning, and sustained multi-step task execution, with the reliability and instruction-following precision that frameworks like OpenClaw need.

Note: All prompts and completions for this model are logged by the provider and may be used to improve the model.

Providers for Hunter Alpha

OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

Latency
7.88s
Throughput
33tps
Uptime
100.0%
Uptime 100.0 percent
Total Context
Max Output
Input Price
Output Price
Cache Read
Cache Write
Input Audio
Input Audio Cache
1.05M
32K
--
--
--
--
--
--

Performance for Hunter Alpha

Compare different providers across OpenRouter

Throughput

Stealth
Avg39 tok/s

Latency

Stealth
Avg5.68 s

E2E Latency

Stealth
Avg28.64 s

Tool Call Error Rate

Stealth
Avg6.00 %

Effective Pricing for Hunter Alpha

Actual cost per million tokens across providers over the past hour

Weighted Average

Weighted Avg Input Price

$0.0000

per 1M tokens

Weighted Avg Output Price

$0.0000

per 1M tokens

ProviderInput $/1MOutput $/1MCache Hit Rate
Stealth
$0.0000$0.000078.6%

Input Price / 1M tokens (7 days)

Mar 11Mar 12Mar 1301234$/1M

Output Price / 1M tokens (7 days)

Mar 11Mar 12Mar 1301234$/1M

Apps using Hunter Alpha

Top public apps this month

1.
Favicon for https://openclaw.ai/
OpenClaw
The AI that actually does things
47Btokens
2.
Favicon for https://kilocode.ai/
Kilo Code
AI coding agent for VS Code
9.79Btokens
3.
Favicon for https://claude.ai/apple-touch-icon.png
Claude Code
The AI for problem solvers
5.71Btokens
4.
Favicon for https://cline.bot/
Cline
Autonomous coding agent right in your IDE
4.79Btokens
5.
Favicon for https://roocode.com/
Roo Code
A whole dev team of AI agents in your editor
4.74Btokens
Mar 11Mar 12Mar 13

Recent activity on Hunter Alpha

Total usage per day on OpenRouter

Mar 11Mar 12Mar 1335B70B105B140B
Prompt
56B
Completion
3.42B
Reasoning
0

Prompt tokens measure input size. Reasoning tokens show internal thinking before a response. Completion tokens reflect total output length.

Uptime stats for Hunter Alpha

Uptime stats for Hunter Alpha on the only provider

When an error occurs in an upstream provider, we can recover by routing to another healthy provider, if your request filters allow it. You can access uptime data programmatically through the Endpoints API

Learn more about our load balancing and customization options.

Sample code and API for Hunter Alpha

OpenRouter normalizes requests and responses across providers for you.

OpenRouter supports reasoning-enabled models that can show their step-by-step thinking process. Use the reasoning parameter in your request to enable reasoning, and access the reasoning_details array in the response to see the model's internal reasoning before the final answer. When continuing a conversation, preserve the complete reasoning_details when passing messages back to the model so it can continue reasoning from where it left off. Learn more about reasoning tokens.

In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.

import { OpenRouter } from "@openrouter/sdk";

const openrouter = new OpenRouter({
  apiKey: "<OPENROUTER_API_KEY>"
});

// Stream the response to get reasoning tokens in usage
const stream = await openrouter.chat.send({
  model: "openrouter/hunter-alpha",
  messages: [
    {
      role: "user",
      content: "How many r's are in the word 'strawberry'?"
    }
  ],
  stream: true
});

let response = "";
for await (const chunk of stream) {
  const content = chunk.choices[0]?.delta?.content;
  if (content) {
    response += content;
    process.stdout.write(content);
  }

  // Usage information comes in the final chunk
  if (chunk.usage) {
    console.log("\nReasoning tokens:", chunk.usage.reasoningTokens);
  }
}

Using third-party SDKs

For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.

See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.

More models from OpenRouter