Hyperbolic

Base URL
Card required✅ No
Free credits$10 USD (never)
Notes$10 free credits on signup
Last verified2026-06-28
Advertisement

Free Models

Model IDContextModalitiesRPMRPD
meta-llama/Meta-Llama-3.1-70B-Instruct 131K text

Quick Start

Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.hyperbolic.xyz/v1",
    api_key="YOUR_API_KEY",  # get at https://app.hyperbolic.xyz/settings
)
response = client.chat.completions.create(
    model="meta-llama/Meta-Llama-3.1-70B-Instruct",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
curl
curl https://api.hyperbolic.xyz/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "meta-llama/Meta-Llama-3.1-70B-Instruct",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
Advertisement