Skip to main content
Hyperbolic offers 15 models through Lava’s AI Gateway, supporting Chat Completions. Authentication uses Authorization: Bearer. See the Hyperbolic API docs for provider-specific parameters.
Supports both managed API keys (from Lava) and BYOK mode.

Quick Start

const response = await fetch('https://api.lavapayments.com/v1/forward?u=https%3A%2F%2Fapi.hyperbolic.xyz%2Fv1%2Fchat%2Fcompletions', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    Authorization: `Bearer ${forwardToken}`,
  },
  body: JSON.stringify({
    model: 'deepseek-ai/DeepSeek-R1-0528',
    messages: [{ role: "user", content: "Hello!" }],
  }),
});

Chat Completions

Target URL: https://api.hyperbolic.xyz/v1/chat/completions
Content Typeapplication/json
StreamingYes (set stream: true in request body)
ModelInput / 1M tokensOutput / 1M tokens
meta-llama/Meta-Llama-3.1-405B-Instruct$4.00$4.00
deepseek-ai/DeepSeek-R1-0528$3.00$3.00
deepseek-ai/DeepSeek-R1$2.00$2.00
deepseek-ai/DeepSeek-V3-0324$1.25$1.25
Qwen/Qwen3-235B-A22B$0.40$0.40
Qwen/QwQ-32B$0.40$0.40
meta-llama/Llama-3.3-70B-Instruct$0.40$0.40
Qwen/Qwen2.5-72B-Instruct$0.40$0.40
meta-llama/Meta-Llama-3-70B-Instruct$0.40$0.40
NousResearch/Hermes-3-Llama-3.1-70B$0.40$0.40
meta-llama/Meta-Llama-3.1-70B-Instruct$0.40$0.40
deepseek-ai/DeepSeek-V3$0.25$0.25
Qwen/Qwen2.5-Coder-32B-Instruct$0.20$0.20
meta-llama/Llama-3.2-3B-Instruct$0.10$0.10
meta-llama/Meta-Llama-3.1-8B-Instruct$0.10$0.10

Next Steps