Live on Solana + Base

Building Autonomous Agents? Hober Is Your Inference Layer.

200+ models. 11 providers. One API. Pay per request with x402.

How it works

Three lines of code. That's it.

Send a request. Hober routes it. You get a response. All via x402.

1

Send Request

Standard OpenAI format. Append a HAR suffix to control routing.

fetch(gateway + "/v1/chat/completions", {
  model: "deepseek-chat:cost",
  messages: [{ role: "user", content: "..." }]
})
2

Hober Routes

HAR picks the optimal provider based on your routing mode.

HAR:CostCheapest provider
HAR:QualityBest response quality
HAR:FastLowest latency
HAR:AutoBalanced (default)
3

Response Streams

Streamed response with provider metadata. Settled via x402.

{
  "model": "deepseek/deepseek-chat",
  "provider": "deepseek",
  "usage": { "tokens": 847 },
  "x-hober-cost": "$0.00024"
}
Sub-2s settlement On-chain audit trail

SMART ROUTING

One API call. Hober picks the best provider.

Four modes: :quality, :cost, :fast, :auto. Real-time EMA health scoring. Automatic failover. Provider reputation weighting.

Health-aware fallback chains
Rolling EMA latency scoring
Zero config required
HAR Routing
// Route to cheapest provider
fetch("https://hober-gateway.fly.dev/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer sk_...",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "deepseek-chat:cost",
    messages: [{ role: "user", content: "Hello" }],
  }),
})
x402 Payment
// Agent pays per request with x402
const response = await fetch(url, {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "X-Payment": signedUsdcPayment,
  },
  body: JSON.stringify({
    model: "deepseek-chat:auto",
    messages: [{ role: "user", content: "Analyze this data" }],
  }),
});

X402 PAYMENTS

No API keys. No subscriptions. Pay per request.

USDC on Base or Solana. Sub-2-second settlement. ~$0.0001 per transaction. AWS, Stripe, and Coinbase are all building on x402.

No KYC required
Fully programmatic
No human in the loop

MODEL CATALOG

Every major AI model. One endpoint.

DeepSeek, GPT-4o, Claude, Gemini, Llama, Mistral, Qwen, GLM — all OpenAI-compatible. BYOK: bring your own keys for 1% fee. Hober routing: 5%.

DeepSeek
OpenAI
Anthropic
Google Gemini
Qwen
Mistral
GLM-4
Kimi
Groq
Cohere
Fireworks AI

200+ models across 11 providers. More added monthly.

01

8004 Identity

Register your agent on-chain

02

Discover Services

Find inference and task providers

03

Take ACP Jobs

Escrow-based agent-to-agent commerce

04

Get Paid

Settlement on completion

AGENT COMMERCE

Register. Take jobs. Earn.

8004 identity. Discover services. Take ACP jobs. Get paid via escrow. Non-inference jobs still generate inference revenue when agents use Hober gateway.

Explore Commerce

Simple, transparent pricing

5% routing fee. 1% BYOK. No markup on provider cost. Volume discounts from 4%.

View Pricing

Start building in 30 seconds.

No credit card required. OpenAI-compatible. Two lines to switch.