Skip to main content

Quickstart

Get from zero to your first API call in under 5 minutes.

Step 1: Create Your Account

1

Sign up

Visit runcrate.ai and click Get Started. Sign up with email/password, magic link, or OAuth (Google, GitHub, Discord).
2

Complete onboarding

A quick 5-step wizard asks about your use case, experience level, and team size.
3

Add credits

Go to Dashboard → Billing, add a payment method, and top up credits. Start with as little as $5.

Step 2: Get Your API Key

Navigate to Dashboard → Keys → API Keys tab and click Create API Key. Copy the key immediately — it’s shown only once. Your key looks like: rc_live_xxxxxxxxxxxxxxxx

Step 3: Make Your First Call

The Runcrate Models API is OpenAI-compatible. Base URL: https://api.runcrate.ai/v1
curl https://api.runcrate.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer rc_live_YOUR_API_KEY" \
  -d '{
    "model": "deepseek-ai/DeepSeek-V3",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ],
    "max_tokens": 512,
    "temperature": 0.7
  }'
Install the OpenAI SDK: pip install openai (Python) or npm install openai (JavaScript).

Step 4: Try the Playground

Don’t want to write code yet? Use the Model Playground in the dashboard:
  1. Go to Dashboard → Models
  2. Click any model
  3. Start chatting, generating images, or creating videos — right in your browser
The playground shows auto-generated code examples (curl, Python, JavaScript) for every request you make.

What Else Can You Do?

Generate Images

Create images with FLUX, Stable Diffusion, and more

Generate Videos

Create videos with Sora 2, Veo 3, Kling, and more

Deploy a GPU Instance

Launch a full GPU environment with SSH access

Browse All Models

Explore 200+ models across 8 categories