Skip to main content

Models API

The Runcrate Models API gives you access to 200+ AI models through a single endpoint. It’s fully OpenAI-compatible — use the same SDKs and code you already have, just change the base URL.

Base URL

https://api.runcrate.ai/v1

OpenAI SDK Compatibility

The API works with the official OpenAI Python and JavaScript SDKs:
from openai import OpenAI

client = OpenAI(
    base_url="https://api.runcrate.ai/v1",
    api_key="rc_live_YOUR_API_KEY",
)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.runcrate.ai/v1",
  apiKey: "rc_live_YOUR_API_KEY",
});

Endpoints

EndpointMethodCategoriesDescription
/v1/chat/completionsPOSTChat, Code, Reasoning, VisionText generation with streaming support
/v1/images/generationsPOSTImageText-to-image generation
/v1/videosPOSTVideoSubmit async video generation job
/v1/videos/{id}GETVideoPoll video job status
/v1/videos/{id}/downloadGETVideoDownload completed video
/v1/audio/speechPOSTTTSText-to-speech synthesis
/v1/audio/transcriptionsPOSTASRSpeech-to-text transcription

Model Categories

CategoryModelsUse Cases
ChatDeepSeek-V3, GPT-4o, Claude 4, Llama 4, Qwen3, Gemini 2.5, MistralConversation, instruction following, general tasks
ReasoningDeepSeek-R1, QwQ, Claude extended thinkingMath, logic, complex problem-solving
CodeCodestral, DeepSeek-Coder, Qwen-CoderCode generation, debugging, analysis
VisionGemini 2.5, Llama 4 Maverick, Gemma 3, GPT-4oImage understanding, visual Q&A
ImageFLUX.1, FLUX.2, Stable Diffusion, IdeogramText-to-image, image editing
VideoSora 2, Veo 3, Kling v3, Seedance, HailuoText-to-video, cinematic generation
TTSKokoro, Orpheus, Qwen3-TTS, Zonos, ChatterboxVoice synthesis, audiobook generation
ASRWhisperAudio transcription

Pricing

Models are billed per token (text) or per generation (images, video, audio). Pricing varies by model. Check the Model Catalog or Pricing page for rates.

Next Steps

Authentication

Get your API key and authenticate requests

Chat Completions

Start with the most popular endpoint