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
Use the hub
For account holders and team admins managing keys, credits, members, OAuth consent, and the marketplace from the dashboard.
Build with the API
For developers wiring the OpenAI SDK, OAuth flows, and management endpoints into apps and backends.
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!' }]
})from openai import OpenAI
client = OpenAI(
api_key=os.getenv("GATEWAY_API_KEY"),
base_url="https://hypery.ai/api/v1"
)
response = client.chat.completions.create(
model="anthropic/claude-3.5-sonnet",
messages=[{"role": "user", "content": "Hello!"}]
)Where to next
- Using the hub — account, dashboard, teams, credits, marketplace, OAuth consent.
- Authentication — API keys and OAuth 2.0.
- AI APIs — chat, images, predictions, providers.
- Management APIs — teams, billing, analytics, apps.
- Integrations — OpenAI SDK, Replicate SDK, Vercel AI SDK, webhooks.