LLM Hub Documentation
Access 200+ AI models through a single, OpenAI-compatible API. Build powerful AI applications without managing multiple provider integrations.
OpenAI-Compatible
Drop-in replacement for OpenAI SDK. Just change the base URL and you're ready.
200+ Models
Access models from OpenAI, Anthropic, Google, Meta, Mistral, and more.
Pay-as-you-go
Only pay for the tokens you use. No subscriptions or commitments.
Enterprise Ready
SOC 2 compliant infrastructure with 99.9% uptime SLA.
Quick Start
Get started in under a minute. If you're already using the OpenAI SDK, you only need to change two lines of code.
Get your API key
Sign up at api.llmhub.one — new accounts get €1 in free credits.
Set the base URL
Point your OpenAI client to https://api.llmhub.one/v1
Make your first request
Use any OpenAI SDK or HTTP client to start chatting.
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.llmhub.one/v1',
apiKey: process.env.LLMHUB_API_KEY
});
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Hello!' }]
});
console.log(response.choices[0].message.content);Supported Providers
Access models from all major AI providers through a unified API.
OpenAI
GPT-4o, GPT-5, o3, DALL-E
Anthropic
Claude 4, Claude 3.5
Gemini 3, Gemini 2.5
Meta
Llama 4, Llama 3.3
Mistral
Mistral Large, Medium
DeepSeek
DeepSeek V3, R1
API Compatibility
LLM Hub implements the OpenAI API specification, ensuring compatibility with existing tools and libraries.
| Endpoint | Status |
|---|---|
/v1/chat/completions | Full support |
/v1/images/generations | Full support |
/v1/embeddings | Full support |
/v1/models | Full support |
/v1/audio/transcriptions | Coming soon |
/v1/audio/speech | Coming soon |
Next Steps
Quick Start Guide →
Complete setup guide with code examples in multiple languages.
Chat Completions API →
Learn about streaming, vision, and function calling.
SDKs & Libraries →
Official and community SDKs for JavaScript, Python, Go, and more.
Pricing & Credits →
Understand how billing works and track your usage.

