Reference

Model Catalog

Hober routes to 200+ models across 15+ providers. The catalog is dynamic — models are added and updated without gateway redeployment.

List All Models

curl https://hober-gateway.fly.dev/v1/models \
  -H "Authorization: Bearer hb_live_your_key_here"

Providers

ProviderFormatFree TierNotable Models
DeepSeekOpenAI-compatibleTrial tokensV3.2, R1, Coder
Google GeminiAdapter1K req/day2.5 Pro, 2.5 Flash, 3 Flash
GroqOpenAI-compatibleRate-limitedLlama 4, Qwen3, Kimi K2
MistralOpenAI-compatibleFree tierNemo, Small, Large
Zhipu/GLMOpenAI-compatibleGLM-4-Flash FREEGLM-4, GLM-4-Flash
CohereAdapterTrial keyCommand R, Embed
Fireworks AIOpenAI-compatible$1 creditQwen3, Llama, open-source
OpenAINativeGPT-4o, GPT-4o-mini
AnthropicAdapterOpus 4.6, Sonnet 4.6, Haiku 4.5
Kimi/MoonshotOpenAI-compatibleKimi K2, K2-mini
Qwen/DashScopeOpenAI-compatibleQwen-Max, Qwen-Plus, Qwen-Turbo

Model Response Format

{
  "object": "list",
  "data": [
    {
      "id": "deepseek-chat",
      "object": "model",
      "provider": "deepseek",
      "pricing": {
        "input": 0.00028,
        "output": 0.00042,
        "currency": "USD",
        "unit": "token"
      },
      "context_length": 128000,
      "capabilities": {
        "streaming": true,
        "tool_use": true,
        "json_mode": true
      }
    }
  ]
}

The model list is always up to date. Use GET /v1/models as the source of truth for available models and pricing. Use HAR slug suffixes like :cost or :quality to let Hober pick the best model for your needs.