Operational
Hyperbolic
Open-source AI infrastructure with free credits on signup.
Setup
1. Create an account at hyperbolic.xyz.
2. You receive free credits on signup.
3. Generate an API key from the dashboard.
4. Set the environment variable below.
API Key
HYPERBOLIC_API_KEY=hb-...
Base URL
https://api.hyperbolic.xyz/v1
Models
meta-llama/Meta-Llama-3.3-70B-Instruct
deepseek-ai/DeepSeek-V3
Capabilities
✓ Text✓ Streaming✓ Tools
Example
curl https://api.hyperbolic.xyz/v1/chat/completions \
-H "Authorization: Bearer $HYPERBOLIC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Meta-Llama-3.3-70B-Instruct",
"messages": [{"role": "user", "content": "Hello"}]
}'