Model API overview
Live
Open in ChatGPT
(opens in new tab)Last verified: 2026-09-08Choose by workload
Model IDs are not interchangeable across endpoint families. Choose the input/output contract first, then use
GET /models to inspect the current callable catalog. Provider release research stays in the Admin candidate queue and is not returned as a customer-callable model.Endpoint families
| Workload | Endpoint | Execution |
|---|---|---|
| Text and reasoning | POST /chat/completions | Synchronous |
| Image creation | POST /images/generations | Model-dependent: immediate output or HTTP 202 with poll_url |
| Image editing | POST /images/edits | Model-dependent: immediate output or HTTP 202 with poll_url |
| Video creation | POST /videos/generations | Asynchronous Prediction |
| Text to speech | POST /audio/speech | Audio response plus Prediction record |
| Speech to text | POST /audio/transcriptions | JSON response plus Prediction record |
Pricing and regions
Use the model catalog for model-level inputs and outputs, pricing for commercial terms, and
GET /regions for the current execution surface.Spicy model API references
Open a model page for its request parameters and current prices. The four Wan 3 landing pages include a developer API section below the Playground. Read GET /v1/models for current schemas and key-specific access; GET /api/model-pricing exposes current customer prices.
| Model and API reference | Model ID | Endpoint |
|---|---|---|
| Wan 3 Spicy | modelrush/wan3-spicy | POST /v1/videos/generations |
| Wan 3 Pro Spicy | modelrush/wan3-pro-spicy | POST /v1/videos/generations |
| Wan 3 Prime Spicy | modelrush/wan3-prime-spicy | POST /v1/videos/generations |
| Wan 3 Prime Pro Spicy | modelrush/wan3-prime-pro-spicy | POST /v1/videos/generations |
| Wan 2.7 I2V Spicy | modelrush/wan2.7-i2v-spicy | POST /v1/videos/generations |
| Wan 2.2 I2V Spicy | modelrush/wan2.2-i2v-spicy | POST /v1/videos/generations |
| Wan 2.2 I2V LoRA Spicy | modelrush/wan2.2-i2v-lora-spicy | POST /v1/videos/generations |
| Z-Image Spicy | modelrush/z-image-spicy | POST /v1/images/generations |
| Z-Image Pro Spicy | modelrush/z-image-spicy-pro | POST /v1/images/generations |
| Qwen Image Edit Spicy | modelrush/qwen-image-edit-spicy | POST /v1/images/edits |
| Face Swap Spicy | modelrush/face-swap | POST /v1/images/edits |
| Head Swap Spicy | modelrush/head-swap | POST /v1/images/edits |
| Wan Animate Spicy | modelrush/wan-animate | POST /v1/videos/generations |
| FlashVSR Spicy | modelrush/flashvsr | POST /v1/videos/generations |
MuleRouter image calls can return HTTP 202 with id and poll_url. Poll that URL with the same API key; GET /v1/predictions/:id completes with status succeeded and outputs. Z-Image Pro Spicy accepts width and height from 256 to 2560 (default 1024), n = 1 and prompt_extend = false by default. Z-Image Spicy also produces one image per request. Do not copy another model's size or output-count limits.
Video polling via GET /v1/videos/generations/:id ends with completed or failed and returns video_url on success. The unified GET /v1/predictions/:id instead uses succeeded and outputs. Follow the contract of the poll_url you use. Wan 3 reference-video time plus generated time cannot exceed 30 seconds. Only Prime and Prime Pro currently accept prompt_extend; check the per-model schema. LoRA supports three optional weight arrays, 480P/720P and 5/8 seconds. Wan Animate and FlashVSR use the video generation endpoint with source media.
All Spicy models require adult-access confirmation on the account. API keys must permit the selected model and capability. Keep keys server-side and reuse Idempotency-Key for retries of the same submission.
PreviousChangelog
NextText and chat