Hypery Hub

One unified gateway for OpenRouter, Replicate, and HuggingFace with credits, OAuth apps, and team analytics.

Hypery Hub fronts multiple AI providers behind a single OpenAI-compatible endpoint and adds credits, OAuth apps, spending limits, and team analytics on top.

Choose your path

Quick start

Get an API key

Visit your dashboard, open Settings → API keys, and create a key. Hub-side instructions live in Account and API keys.

Make your first request

curl https://hypery.ai/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-3.5-sonnet",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Use the OpenAI SDK

import OpenAI from 'openai'
 
const client = new OpenAI({
  apiKey: process.env.GATEWAY_API_KEY,
  baseURL: 'https://hypery.ai/api/v1'
})
 
const response = await client.chat.completions.create({
  model: 'anthropic/claude-3.5-sonnet',
  messages: [{ role: 'user', content: 'Hello!' }]
})

Where to next