Skip to main content

Overview

Hyperbolic provides $1 in trial credits to new users, giving you access to a curated selection of powerful open-source models including DeepSeek V3, Llama 3.1 405B, and Qwen models.

Trial Credits

$1 in free credits

Duration

No expiration specified

Available Models

Hyperbolic offers access to high-performance models optimized for their infrastructure:

Language Models

ModelDescription
DeepSeek V3Latest DeepSeek model with strong reasoning
DeepSeek V3 0324Specific checkpoint version
deepseek-ai/deepseek-r1-0528DeepSeek reasoning model
Llama 3.1 405B BaseLargest Llama base model
Llama 3.1 405B InstructInstruction-tuned 405B model
Llama 3.1 70B InstructEfficient 70B instruction model
Llama 3.1 8B InstructFast 8B instruction model
Llama 3.2 3B InstructCompact instruction model
Llama 3.3 70B InstructLatest 70B instruction model
Qwen QwQ 32BReasoning-focused model
Qwen2.5 72B InstructHigh-performance Qwen model
Qwen2.5 Coder 32B InstructSpecialized coding model
qwen/qwen3-235b-a22bLatest Qwen 3 model
qwen/qwen3-235b-a22b-instruct-2507Instruction-tuned Qwen 3
qwen/qwen3-coder-480b-a35b-instructLarge coding model
qwen/qwen3-next-80b-a3b-instructNext-gen Qwen model
qwen/qwen3-next-80b-a3b-thinkingReasoning variant
openai/gpt-oss-120bOpen-source GPT model
openai/gpt-oss-120b-turboOptimized GPT variant
openai/gpt-oss-20bSmaller open GPT model

Vision Models

  • Pixtral 12B (2409): Multimodal vision-language model
  • Qwen2.5 VL 72B Instruct: Large vision-language model
  • Qwen2.5 VL 7B Instruct: Efficient vision-language model

Getting Started

1. Sign Up

Visit app.hyperbolic.xyz and create a free account to receive your $1 credit.

2. Get Your API Key

Navigate to your dashboard to generate an API key.

3. Make API Calls

import openai

client = openai.OpenAI(
    api_key="YOUR_HYPERBOLIC_API_KEY",
    base_url="https://api.hyperbolic.xyz/v1"
)

response = client.chat.completions.create(
    model="meta-llama/Meta-Llama-3.1-405B-Instruct",
    messages=[{
        "role": "user",
        "content": "What is the capital of France?"
    }]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.HYPERBOLIC_API_KEY,
  baseURL: 'https://api.hyperbolic.xyz/v1'
});

const response = await client.chat.completions.create({
  model: 'meta-llama/Meta-Llama-3.1-405B-Instruct',
  messages: [{
    role: 'user',
    content: 'What is the capital of France?'
  }]
});

console.log(response.choices[0].message.content);
curl https://api.hyperbolic.xyz/v1/chat/completions \
  -H "Authorization: Bearer YOUR_HYPERBOLIC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "meta-llama/Meta-Llama-3.1-405B-Instruct",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

Model Highlights

DeepSeek V3

State-of-the-art reasoning and coding capabilities

Llama 3.1 405B

One of the largest and most capable open models

Qwen 3

Excellent multilingual and coding performance

Vision Models

Multimodal understanding with Qwen VL and Pixtral

Use Cases

  • Advanced Reasoning: Use DeepSeek or Qwen QwQ for complex problems
  • Code Generation: Leverage specialized coding models
  • Vision Tasks: Process images with multimodal models
  • Large Context: Use 405B models for complex, long-context tasks
  • Multilingual: Qwen models excel at Chinese and other languages

API Compatibility

Hyperbolic uses an OpenAI-compatible API, making it easy to integrate with existing code and tools.

Resources

Hyperbolic Platform

Access the platform

Dashboard

View usage and credits
Start with smaller models (8B-32B) to maximize your $1 credit, then test larger models for specific use cases.

Build docs developers (and LLMs) love