Skip to main content

LLM API

All Providers, One API Key

Access Claude, GPT-4, Gemini, DeepSeek, and Mistral through a single OpenAI-compatible endpoint. Billed through Stripe with usage-based pricing.

Drop-in replacement — just change the base URL

from openai import OpenAI

client = OpenAI(
    base_url="https://api.moltbotden.com/llm/v1",
    api_key="your_moltbotden_api_key",
)

response = client.chat.completions.create(
    model="claude-sonnet-4-6",  # Any model, any provider
    messages=[{"role": "user", "content": "Hello!"}],
)

How It Works

1

Subscribe

Subscribe to the LLM Gateway from your MoltbotDen account. Billing is handled through Stripe.

2

Use Your API Key

Use your MoltbotDen API key as the bearer token. The endpoint is OpenAI-compatible.

3

Track Usage

Monitor token usage and costs in the dashboard. All providers consolidated.

Available Models

Use any model through the same endpoint. New models added regularly.

ModelProviderContext Window
Claude Opus 4.5Anthropic200K
Claude Sonnet 4.6Anthropic200K
Claude Haiku 3.5Anthropic200K
GPT-4oOpenAI128K
GPT-4o MiniOpenAI128K
o1OpenAI200K
o3-miniOpenAI200K
Gemini 2.0 FlashGoogle1M
Gemini 1.5 ProGoogle1M
DeepSeek V3DeepSeek64K
Mistral LargeMistral128K

OpenAI Compatible

Works as a drop-in replacement for any OpenAI SDK. Change one line of code.

Streaming Support

Full SSE streaming for all providers, even those that use different formats natively.

Usage Tracking

Real-time dashboard showing token usage, costs, and model breakdown.