Skip to main content

Overview

Hyperbolic provides decentralized GPU compute infrastructure for AI inference with competitive pricing and global availability. Key Features:
  • Decentralized GPU network
  • OpenAI-compatible API
  • Global edge deployment
  • Cost-effective pricing
Official Documentation: Hyperbolic Docs

Authentication

Hyperbolic uses Bearer token authentication with OpenAI-compatible format. Lava Forward Token:
${LAVA_SECRET_KEY}.${CONNECTION_SECRET}.${PRODUCT_SECRET}
For BYOK: ${TOKEN}.${YOUR_HYPERBOLIC_KEY}
ModelContextDescription
meta-llama/Meta-Llama-3.3-70B-Instruct128KLlama 3.3 flagship
Qwen/Qwen2.5-72B-Instruct128KQwen multilingual
Endpoint: https://api.hyperbolic.xyz/v1/chat/completions Usage Tracking: data.usage (OpenAI format)

Quick Start

const response = await fetch(
  `https://api.lavapayments.com/v1/forward?u=${encodeURIComponent('https://api.hyperbolic.xyz/v1/chat/completions')}`,
  {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${process.env.LAVA_FORWARD_TOKEN}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      model: 'meta-llama/Meta-Llama-3.3-70B-Instruct',
      messages: [{role: 'user', content: 'Hello!'}]
    })
  }
);

const data = await response.json();
console.log('Usage:', data.usage.total_tokens);

BYOK Support

Supported - Get API key from Hyperbolic Dashboard

Resources