Skip to main content

Quick Start

Connect your vibe coding tools to ScaleLLM in 2 minutes.

1. Get Your API Key

  1. Sign up at scalellm.dev/signup
  2. Go to your dashboard
  3. Copy your API key (starts with sk_)

2. Configure Your Tool

In Cursor settings, set:
SettingValue
Base URLhttps://api.scalellm.dev/v1
API Keysk_your_key
Modelclaude-sonnet-4.5
Full Cursor setup guide →

3. Test It

curl https://api.scalellm.dev/v1/chat/completions \
  -H "Authorization: Bearer sk_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4.5",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Available Models

# Claude models
claude-opus-4.5        # Most capable
claude-sonnet-4.5      # Balanced (recommended)
claude-haiku-4.5       # Fastest

# Gemini models
gemini-3-pro-preview        # Long context
gemini-3-pro-image-preview  # Multimodal
gemini-3-flash            # Fast & cheap

Next Steps