# Renderful AI — Full Agent & API Reference > Version: 2.0.0 (generated from the live model catalog) > Canonical base URL: https://api.renderful.ai/api/v1 > Renderful is a single REST API for AI image, video, audio, 3D, and LLM generation. One API key and one consistent request/response format give developers access to 559+ models from 15+ providers — including Alibaba, Black Forest Labs, ByteDance, ElevenLabs, Google, Kling, Lucy Edit AI, MiniMax and more. Switch models by changing one parameter. Pay-per-use pricing, a free tier to start, no subscription. Last updated: 2026-09-12 Website: https://renderful.ai Documentation: https://renderful.ai/docs Model directory: https://renderful.ai/models Free AI tools: https://renderful.ai/tools Pricing: https://renderful.ai/pricing OpenAPI specification: https://renderful.ai/api/v1/openapi.json Concise summary: https://renderful.ai/llms.txt ## What is Renderful? Renderful is an AI generation API aggregator. Instead of integrating, authenticating against, and maintaining a dozen separate vendor APIs (OpenAI Sora, Kling, Google Veo, Alibaba WAN, ByteDance Seedream/Seedance, Black Forest Labs FLUX, MiniMax Hailuo, ElevenLabs, Suno, and others), developers integrate Renderful once and call any model through the same endpoint. Renderful normalizes request parameters, response shapes, webhooks, billing, and error handling across every model. Key facts: - One unified REST API for 559+ models across 12 generation types. - Pay-per-use pricing billed per request — no subscription, no monthly minimum, no idle GPU cost. - Free credits on signup to test any model. - Authentication via API key (Bearer token) or x402 permissionless payments for AI agents. - Webhook support for async/long-running video jobs. - SDK-free: works with plain HTTP from Python, Node.js, cURL, Go, or any language. ## Why developers choose Renderful - One integration, every model. Add new models without new SDKs or auth flows. - Consistent schema. The same request/response shape for every model of a given type. - Newest models fast. Trending models (Sora 2, Kling, WAN, Seedance, FLUX) are added quickly. - Transparent per-request pricing. See exact cost per model; no surprise platform fees. - Built for agents. Machine-readable manifests, OpenAPI spec, and x402 payments. ## 1) Overview — supported generation types - text-to-image - image-to-image - text-to-video - image-to-video - video-to-video (including upscale) - reference-to-video - text-to-audio / text-to-music - speech-to-text - text/image-to-3d - text-to-text (LLM) ## 2) Authentication ### Mode A: API key (rf_) ```http Authorization: Bearer rf_your_api_key ``` ### Mode A2: Developer API key (sk_ / vega_) ```http Authorization: Bearer sk_your_api_key ``` Use `GET /api/v1/account/balance` to query developer balance, reserved balance, and available balance. ### Mode B: x402 permissionless payments ```http x-payment: ``` x402 is accepted on `POST /api/v1/generations`. Create a key in the dashboard: https://renderful.ai/dashboard ## 3) Agent onboarding flow ### Step 1. Register ```http POST /api/v1/agents/register Content-Type: application/json { "agent_name": "MyAgent", "webhook_url": "https://example.com/webhook", "source": "directory", "agent_platform": "openclaw", "agent_version": "1.0.0" } ``` Success response includes `agent_id`, `api_key` (shown once), `deposit_addresses`, `balance`, `starting_balance`, `trial_credit_applied`, and `activation_tips`. ### Step 2. Quote before generating ```http POST /api/v1/agents/quote Authorization: Bearer rf_your_api_key Content-Type: application/json { "type": "text-to-video", "model": "hailuo-2.3", "resolution": "720p" } ``` ### Step 3. Generate ```http POST /api/v1/generations Authorization: Bearer rf_your_api_key Content-Type: application/json { "type": "text-to-image", "model": "flux-dev", "prompt": "A clean product hero shot of wireless headphones" } ``` Video example with a webhook for the async result: ```http POST /api/v1/generations Authorization: Bearer rf_your_api_key Content-Type: application/json { "type": "text-to-video", "model": "sora-2", "prompt": "a timelapse of a city skyline at night", "webhook_url": "https://example.com/webhook" } ``` LLM request format: ```http POST /api/v1/generations Authorization: Bearer rf_your_api_key Content-Type: application/json { "type": "text-to-text", "model": "kimi-k2.5", "prompt": "Summarize this design doc in 5 bullets", "system_prompt": "Be concise and technical.", "max_tokens": 512, "temperature": 0.7 } ``` OpenAI-style `messages[]` are also accepted for `text-to-text`. Renderful LLM requests use `POST /api/v1/generations` with `type: "text-to-text"`; `/v1/chat/completions` is not the public endpoint. List LLM models with `GET /api/v1/models?type=text-to-text`. ### Step 4. Poll ```http GET /api/v1/generations/{id} Authorization: Bearer rf_your_api_key ``` ## 4) Core endpoints - `GET /api/v1/models` - `GET /api/v1/models/health` — per-model availability status (operational/degraded/unavailable/unknown) from recent generation outcomes; supports `?model=` and `?window=` (minutes) - `POST /api/v1/agents/register` - `POST /api/v1/agents/deposit` - `GET /api/v1/agents/balance` - `GET /api/v1/account/balance` - `POST /api/v1/agents/quote` - `PATCH /api/v1/agents/webhook` - `POST /api/v1/generations` - `GET /api/v1/generations/{id}` ## 5) Generation request schema (high-level) Required fields: `type`, `model`. Common optional fields: `prompt`, `negative_prompt`, `image_url`, `video_url`, `audio_url`, `images[]`, `videos[]`, `aspect_ratio`, `resolution`, `duration`, `num_outputs`, `seed`, `webhook_url`, and for LLMs `system_prompt`, `max_tokens`, `temperature`, `messages[]`. Supported `type` values: text-to-image, image-to-image, text-to-video, image-to-video, video-to-video, reference-to-video, subject-to-video, upscale, face-swap, lip-sync, text-to-music, text-to-audio, audio-to-audio, speech-to-text, dubbing, text-to-3d, image-to-3d, text-to-text. ## 6) Payment - Currency: USD. Prepaid asset: USDC. - Supported chains: Base, Polygon, Ethereum. - Deposit endpoint: `POST /api/v1/agents/deposit`. x402 header: `x-payment`. ## 7) Webhooks Configure with `PATCH /api/v1/agents/webhook` (body: `{ "webhook_url": "https://example.com/webhook" }`). Verification: header `X-Webhook-Signature`, algorithm `HMAC-SHA256`. ## 8) Full model catalog (559 models) Each model is callable at `POST /api/v1/generations` by passing its `type` and `model`. Per-model parameters, examples, and pricing are on the linked model page. ### Text to Video (42) - **WAN 2.1** by Alibaba — Efficient video generation with good motion quality from Alibaba. API: `type: "text-to-video", model: "wan-2.1"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.1/text-to-video - **WAN 2.5** by Alibaba — Latest WAN model with improved quality and motion coherence. API: `type: "text-to-video", model: "wan-2.5"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.5/text-to-video - **WAN 2.6** by Alibaba — Latest WAN model with enhanced motion and longer durations. API: `type: "text-to-video", model: "wan-2.6"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.6/text-to-video - **WAN 2.7 Text-to-Video** by Alibaba — Latest WAN model with best-in-class video quality. API: `type: "text-to-video", model: "wan-2.7-t2v"`. Price: $0.675 per request. Docs: https://renderful.ai/models/alibaba/wan-2.7-t2v/text-to-video - **WAN 3.0 Text-to-Video** by Alibaba — Newest WAN model: up to 30s videos, audio, and 1080p. API: `type: "text-to-video", model: "wan-3.0-t2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-3.0-t2v/text-to-video - **WAN 2.2 Text-to-Video** by Alibaba — Efficient video generation with good motion. API: `type: "text-to-video", model: "wan-2.2-t2v"`. Price: $0.45 per request. Docs: https://renderful.ai/models/alibaba/wan-2.2-t2v/text-to-video - **Sora 2** by OpenAI — OpenAI's flagship video generation model. API: `type: "text-to-video", model: "sora-2"`. Price: $0.4 per request. Docs: https://renderful.ai/models/openai/sora-2/text-to-video - **Sora 2 Pro** by OpenAI — Premium Sora model with enhanced quality. API: `type: "text-to-video", model: "sora-2-pro"`. Price: $1.2 per request. Docs: https://renderful.ai/models/openai/sora-2-pro/text-to-video - **Google Veo 3.1** by Google — Google's flagship video generation model. API: `type: "text-to-video", model: "google-veo-3.1"`. Price: $2.82 per request. Docs: https://renderful.ai/models/google/google-veo-3.1/text-to-video - **Google Veo 3.1 Fast** by Google — Fast Google video generation. API: `type: "text-to-video", model: "google-veo-3.1-fast"`. Price: $1.06 per request. Docs: https://renderful.ai/models/google/google-veo-3.1-fast/text-to-video - **Gemini Omni Video** by Google — Multimodal video generation with omni references. API: `type: "text-to-video", model: "gemini-omni-video"`. Price: $0.69 per request. Docs: https://renderful.ai/models/google/gemini-omni-video/text-to-video - **Google Veo 3** by Google — High-quality Google video generation. API: `type: "text-to-video", model: "google-veo-3"`. Price: $3.2 per request. Docs: https://renderful.ai/models/google/google-veo-3/text-to-video - **Google Veo 3 Fast** by Google — Fast Google video generation. API: `type: "text-to-video", model: "google-veo-3-fast"`. Price: $1.2 per request. Docs: https://renderful.ai/models/google/google-veo-3-fast/text-to-video - **Google Veo 2** by Google — Reliable Google video generation. API: `type: "text-to-video", model: "google-veo-2"`. Price: $4 per request. Docs: https://renderful.ai/models/google/google-veo-2/text-to-video - **Seedance 2.5 Text to Video** by ByteDance — Next-gen text-to-video with 30s output and multi-reference. API: `type: "text-to-video", model: "seedance-2.5-t2v"`. Price: $1.58 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.5/text-to-video - **Seedance 2.0 Text to Video** by ByteDance — Text-to-video with multi-reference and native audio. API: `type: "text-to-video", model: "seedance-2.0-t2v"`. Price: $1.64 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0/text-to-video - **Seedance 2.0 Mini Text to Video** by ByteDance — Lower-cost text-to-video with multi-reference and native audio. API: `type: "text-to-video", model: "seedance-2.0-mini-t2v"`. Price: $0.82 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-mini/text-to-video - **Seedance 2.0 Fast Text to Video** by ByteDance — Fast text-to-video with lower cost and multi-reference. API: `type: "text-to-video", model: "seedance-2.0-fast-t2v"`. Price: $1.32 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-fast/text-to-video - **Seedance 1.5 Pro** by ByteDance — Latest Seedance with enhanced motion and frame control. API: `type: "text-to-video", model: "seedance-1.5-pro"`. Price: $0.13 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.5-pro/text-to-video - **Seedance 1.0 Pro** by ByteDance — Premium Seedance with enhanced quality. API: `type: "text-to-video", model: "seedance-1.0-pro"`. Price: $0.744 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.0-pro/text-to-video - **Seedance 1.0 Pro Fast** by ByteDance — Pro quality with fast generation. API: `type: "text-to-video", model: "seedance-1.0-pro-fast"`. Price: $0.132 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.0-pro-fast/text-to-video - **Vidu Q2** by Vidu — High-quality video generation from Vidu. API: `type: "text-to-video", model: "vidu-q2"`. Price: $0.4 per request. Docs: https://renderful.ai/models/vidu/vidu-q2/text-to-video - **Vidu Q1** by Vidu — Fast and efficient 1080p video generation. API: `type: "text-to-video", model: "vidu-q1"`. Price: $0.4 per request. Docs: https://renderful.ai/models/vidu/vidu-q1/text-to-video - **Kling v1** by Kling — Original Kling model with reliable quality. API: `type: "text-to-video", model: "kling-v1"`. Price: $0.18 per request. Docs: https://renderful.ai/models/kling/kling-v1/text-to-video - **Kling v1.5** by Kling — Improved Kling with better motion coherence. API: `type: "text-to-video", model: "kling-v1-5"`. Price: $0.38 per request. Docs: https://renderful.ai/models/kling/kling-v1-5/text-to-video - **Kling v1.6** by Kling — Latest v1 series with enhanced quality. API: `type: "text-to-video", model: "kling-v1-6"`. Price: $0.28 per request. Docs: https://renderful.ai/models/kling/kling-v1-6/text-to-video - **Kling v2 Master** by Kling — Premium v2 with cinematic 1080p quality. API: `type: "text-to-video", model: "kling-v2-master"`. Price: $1.7 per request. Docs: https://renderful.ai/models/kling/kling-v2-master/text-to-video - **Kling v2.1 Master** by Kling — Premium v2.1 with highest quality. API: `type: "text-to-video", model: "kling-v2-1-master"`. Price: $1.7 per request. Docs: https://renderful.ai/models/kling/kling-v2-1-master/text-to-video - **Kling v2.5 Turbo** by Kling — Fast generation with good quality. API: `type: "text-to-video", model: "kling-v2-5-turbo"`. Price: $0.31 per request. Docs: https://renderful.ai/models/kling/kling-v2-5-turbo/text-to-video - **Kling v2.6** by Kling — Latest Kling v2 with audio generation. API: `type: "text-to-video", model: "kling-v2-6"`. Price: $0.31 per request. Docs: https://renderful.ai/models/kling/kling-v2-6/text-to-video - **Kling v3.0** by Kling — Next-gen Kling with std/pro/4k modes and audio. API: `type: "text-to-video", model: "kling-v3"`. Price: $0.42 per request. Docs: https://renderful.ai/models/kling/kling-v3/text-to-video - **Kling 3.0 Turbo** by Kling — Fast Kling 3.0 with 720p/1080p output. API: `type: "text-to-video", model: "kling-3.0-turbo"`. Price: $0.56 per request. Docs: https://renderful.ai/models/kling/kling-3.0-turbo/text-to-video - **Hailuo 2.3** by MiniMax — High-quality video generation with natural motion. API: `type: "text-to-video", model: "hailuo-2.3"`. Price: $0.28 per request. Docs: https://renderful.ai/models/minimax/hailuo-2.3/text-to-video - **Hailuo 2.3 Pro** by MiniMax — Premium text-to-video with enhanced quality. API: `type: "text-to-video", model: "hailuo-2.3-pro"`. Price: $0.49 per request. Docs: https://renderful.ai/models/minimax/hailuo-2.3-pro/text-to-video - **Hailuo 03 (MiniMax H3)** by MiniMax — 2K multimodal video with native stereo audio. API: `type: "text-to-video", model: "hailuo-03"`. Price: $0.6 per request. Docs: https://renderful.ai/models/minimax/hailuo-03/text-to-video - **Hailuo 02** by MiniMax — High-quality text-to-video with frame control. API: `type: "text-to-video", model: "hailuo-02"`. Price: $0.27 per request. Docs: https://renderful.ai/models/minimax/hailuo-02/text-to-video - **T2V-01** by MiniMax — Affordable text-to-video generation. API: `type: "text-to-video", model: "t2v-01"`. Price: $0.2 per request. Docs: https://renderful.ai/models/minimax/t2v-01/text-to-video - **T2V-01 Director** by MiniMax — Text-to-video with camera control. API: `type: "text-to-video", model: "t2v-01-director"`. Price: $0.28 per request. Docs: https://renderful.ai/models/minimax/t2v-01-director/text-to-video - **Grok Imagine Video** by xAI — xAI's creative and flexible video generation model. API: `type: "text-to-video", model: "grok-imagine-video"`. Price: $0.28 per request. Docs: https://renderful.ai/models/xai/grok-imagine-video/text-to-video - **HappyHorse T2V** by Alibaba — Top-ranked AI text-to-video model with realistic dynamics. API: `type: "text-to-video", model: "happyhorse-1.0-t2v"`. Price: $0.7 per request. Docs: https://renderful.ai/models/alibaba/happyhorse-1.0-t2v/text-to-video - **PixVerse V6 T2V** by PixVerse — Fast text-to-video with thinking mode and audio. API: `type: "text-to-video", model: "pixverse-v6-t2v"`. Price: $0.225 per request. Docs: https://renderful.ai/models/pixverse/pixverse-v6-t2v/text-to-video - **PixVerse C1 T2V** by PixVerse — Latest PixVerse model with improved quality. API: `type: "text-to-video", model: "pixverse-c1-t2v"`. Price: $0.325 per request. Docs: https://renderful.ai/models/pixverse/pixverse-c1-t2v/text-to-video ### Image to Video (417) - **WAN 2.7 Image-to-Video** by Alibaba — Versatile I2V with first/last frame and video continuation. API: `type: "image-to-video", model: "wan-2.7-i2v"`. Price: $0.675 per request. Docs: https://renderful.ai/models/alibaba/wan-2.7-i2v/image-to-video - **WAN 3.0 Image-to-Video** by Alibaba — Animate images into up to 30s videos with audio. API: `type: "image-to-video", model: "wan-3.0-i2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-3.0-i2v/image-to-video - **Seedance 2.5 Image to Video** by ByteDance — Animate images into cinematic videos up to 30 seconds. API: `type: "image-to-video", model: "seedance-2.5-i2v"`. Price: $1.58 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.5-i2v/image-to-video - **Seedance 2.0 Image to Video** by ByteDance — Animate images into cinematic videos with frame control. API: `type: "image-to-video", model: "seedance-2.0-i2v"`. Price: $1.64 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-i2v/image-to-video - **Seedance 2.0 Mini Image to Video** by ByteDance — Lower-cost image-to-video with native audio. API: `type: "image-to-video", model: "seedance-2.0-mini-i2v"`. Price: $0.82 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-mini-i2v/image-to-video - **Seedance 2.0 Fast Image to Video** by ByteDance — Fast image-to-video with frame control at lower cost. API: `type: "image-to-video", model: "seedance-2.0-fast-i2v"`. Price: $1.32 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-fast-i2v/image-to-video - **Kling v1** by Kling — Original Kling image-to-video. API: `type: "image-to-video", model: "kling-v1"`. Price: $0.18 per request. Docs: https://renderful.ai/models/kling/kling-v1-i2v/image-to-video - **Kling v1.5** by Kling — Improved Kling image-to-video with better motion. API: `type: "image-to-video", model: "kling-v1-5"`. Price: $0.38 per request. Docs: https://renderful.ai/models/kling/kling-v1-5-i2v/image-to-video - **Kling v1.6** by Kling — Latest v1 series image-to-video with enhanced quality. API: `type: "image-to-video", model: "kling-v1-6"`. Price: $0.28 per request. Docs: https://renderful.ai/models/kling/kling-v1-6-i2v/image-to-video - **Kling O1** by Kling — Reference-based video with multi-image support. API: `type: "image-to-video", model: "kling-o1"`. Price: $0.63 per request. Docs: https://renderful.ai/models/kling/kling-o1/image-to-video - **Kling v2 Master** by Kling — Premium v2 image-to-video with cinematic quality. API: `type: "image-to-video", model: "kling-v2-master"`. Price: $1.7 per request. Docs: https://renderful.ai/models/kling/kling-v2-master-i2v/image-to-video - **Kling v2.1** by Kling — Balanced speed and fidelity for v2 series. API: `type: "image-to-video", model: "kling-v2-1"`. Price: $0.6 per request. Docs: https://renderful.ai/models/kling/kling-v2-1/image-to-video - **Kling v2.1 Master** by Kling — Premium v2.1 image-to-video. API: `type: "image-to-video", model: "kling-v2-1-master"`. Price: $1.7 per request. Docs: https://renderful.ai/models/kling/kling-v2-1-master-i2v/image-to-video - **Kling v2.5 Turbo** by Kling — Fast image-to-video with good quality. API: `type: "image-to-video", model: "kling-v2-5-turbo"`. Price: $0.31 per request. Docs: https://renderful.ai/models/kling/kling-v2-5-turbo-i2v/image-to-video - **Kling v2.6** by Kling — Latest Kling v2 image-to-video with audio. API: `type: "image-to-video", model: "kling-v2-6"`. Price: $0.31 per request. Docs: https://renderful.ai/models/kling/kling-v2-6-i2v/image-to-video - **Kling v3.0** by Kling — Next-gen Kling image-to-video with std/pro/4k modes. API: `type: "image-to-video", model: "kling-v3"`. Price: $0.42 per request. Docs: https://renderful.ai/models/kling/kling-v3-i2v/image-to-video - **Kling 3.0 Turbo** by Kling — Fast image-to-video with 720p/1080p output. API: `type: "image-to-video", model: "kling-3.0-turbo"`. Price: $0.56 per request. Docs: https://renderful.ai/models/kling/kling-3.0-turbo-i2v/image-to-video - **Kling v1 Image-to-Video** by Kling — Animate images with v1 quality. API: `type: "image-to-video", model: "kling-i2v-v1"`. Price: $0.18 per request. Docs: https://renderful.ai/models/kling/kling-i2v-v1/image-to-video - **Kling v2 Master Image-to-Video** by Kling — Premium image animation with cinematic quality. API: `type: "image-to-video", model: "kling-i2v-v2-master"`. Price: $1.7 per request. Docs: https://renderful.ai/models/kling/kling-i2v-v2-master/image-to-video - **Hailuo 2.3 Fast** by MiniMax — Fast image-to-video with natural motion. API: `type: "image-to-video", model: "hailuo-2.3-fast-i2v"`. Price: $0.17 per request. Docs: https://renderful.ai/models/minimax/hailuo-2.3-fast/image-to-video - **Hailuo 2.3** by MiniMax — High quality image-to-video animation. API: `type: "image-to-video", model: "hailuo-2.3-i2v"`. Price: $0.25 per request. Docs: https://renderful.ai/models/minimax/hailuo-2.3-i2v/image-to-video - **Hailuo 03 (MiniMax H3)** by MiniMax — Animate images to 2K video with native audio. API: `type: "image-to-video", model: "hailuo-03-i2v"`. Price: $0.6 per request. Docs: https://renderful.ai/models/minimax/hailuo-03-i2v/image-to-video - **Hailuo 02 (First/Last Frame)** by MiniMax — First/Last frame to video. API: `type: "image-to-video", model: "hailuo-02-i2v"`. Price: $0.27 per request. Docs: https://renderful.ai/models/minimax/hailuo-02-i2v/image-to-video - **I2V-01** by MiniMax — Image-to-video with natural motion. API: `type: "image-to-video", model: "i2v-01"`. Price: $0.25 per request. Docs: https://renderful.ai/models/minimax/i2v-01/image-to-video - **I2V-01 Director** by MiniMax — Image-to-video with camera control. API: `type: "image-to-video", model: "i2v-01-director"`. Price: $0.35 per request. Docs: https://renderful.ai/models/minimax/i2v-01-director/image-to-video - **I2V-01 Live** by MiniMax — Live-action style image animation. API: `type: "image-to-video", model: "i2v-01-live"`. Price: $0.3 per request. Docs: https://renderful.ai/models/minimax/i2v-01-live/image-to-video - **S2V-01** by MiniMax — Subject-driven video generation. API: `type: "image-to-video", model: "s2v-01"`. Price: $0.4 per request. Docs: https://renderful.ai/models/minimax/s2v-01/image-to-video - **WAN 2.5** by Alibaba — Image-to-video with A/V sync. API: `type: "image-to-video", model: "wan-2.5-i2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.5-i2v/image-to-video - **WAN 2.6** by Alibaba — Image-to-video with enhanced motion. API: `type: "image-to-video", model: "wan-2.6-i2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.6-i2v/image-to-video - **Seedance 1.5 Pro** by ByteDance — Latest image-to-video with enhanced motion. API: `type: "image-to-video", model: "seedance-1.5-pro-i2v"`. Price: $1.2 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.5-pro-i2v/image-to-video - **Seedance 1.0 Pro** by ByteDance — Premium image-to-video animation. API: `type: "image-to-video", model: "seedance-1.0-pro-i2v"`. Price: $0.6 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.0-pro-i2v/image-to-video - **Seedance 1.0 Pro Fast** by ByteDance — Pro quality image-to-video with fast generation. API: `type: "image-to-video", model: "seedance-1.0-pro-fast-i2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.0-pro-fast-i2v/image-to-video - **Sora 2** by OpenAI — OpenAI image-to-video with audio. API: `type: "image-to-video", model: "sora-2-i2v"`. Price: $0.4 per request. Docs: https://renderful.ai/models/openai/sora-2-i2v/image-to-video - **Sora 2 Pro** by OpenAI — Premium OpenAI image-to-video. API: `type: "image-to-video", model: "sora-2-pro-i2v"`. Price: $1.2 per request. Docs: https://renderful.ai/models/openai/sora-2-pro-i2v/image-to-video - **Google Veo 3.1** by Google — Google image-to-video with frame support. API: `type: "image-to-video", model: "google-veo-3.1-i2v"`. Price: $2.82 per request. Docs: https://renderful.ai/models/google/google-veo-3.1-i2v/image-to-video - **Google Veo 3.1 Fast** by Google — Fast Google image-to-video. API: `type: "image-to-video", model: "google-veo-3.1-fast-i2v"`. Price: $1.06 per request. Docs: https://renderful.ai/models/google/google-veo-3.1-fast-i2v/image-to-video - **Grok Imagine Video** by xAI — xAI's creative image-to-video animation. API: `type: "image-to-video", model: "grok-imagine-video-i2v"`. Price: $0.28 per request. Docs: https://renderful.ai/models/xai/grok-imagine-video-i2v/image-to-video - **Grok Imagine Video 1.5** by xAI — Official xAI Grok Imagine 1.5 image-to-video. API: `type: "image-to-video", model: "grok-imagine-video-1.5-i2v"`. Price: $0.57 per request. Docs: https://renderful.ai/models/xai/grok-imagine-video-1.5-i2v/image-to-video - **Runway Gen4 Turbo** by Runway — High-quality image-to-video with cinematic motion. API: `type: "image-to-video", model: "runway-gen4-turbo-i2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/runway/runway-gen4-turbo/image-to-video - **Vidu Q2** by Vidu — Vidu image-to-video with audio. API: `type: "image-to-video", model: "vidu-q2-i2v"`. Price: $0.4 per request. Docs: https://renderful.ai/models/vidu/vidu-q2-i2v/image-to-video - **HappyHorse I2V** by Alibaba — Top-ranked AI image-to-video model with strict image consistency. API: `type: "image-to-video", model: "happyhorse-1.0-i2v"`. Price: $0.7 per request. Docs: https://renderful.ai/models/alibaba/happyhorse-1.0-i2v/image-to-video - **HappyHorse R2V** by Alibaba — Reference-to-video with up to 9 reference images. API: `type: "image-to-video", model: "happyhorse-1.0-r2v"`. Price: $0.7 per request. Docs: https://renderful.ai/models/alibaba/happyhorse-1.0-r2v/image-to-video - **PixVerse V6 I2V** by PixVerse — Animate images into videos with thinking mode. API: `type: "image-to-video", model: "pixverse-v6-i2v"`. Price: $0.225 per request. Docs: https://renderful.ai/models/pixverse/pixverse-v6-i2v/image-to-video - **PixVerse V6 Transition** by PixVerse — Smooth AI video transitions between two images. API: `type: "image-to-video", model: "pixverse-v6-transition"`. Price: $0.36 per request. Docs: https://renderful.ai/models/pixverse/pixverse-v6-transition/transition - **PixVerse C1 I2V** by PixVerse — Latest PixVerse image-to-video with improved quality. API: `type: "image-to-video", model: "pixverse-c1-i2v"`. Price: $0.325 per request. Docs: https://renderful.ai/models/pixverse/pixverse-c1-i2v/image-to-video - **PixVerse C1 R2V** by PixVerse — Multi-reference video generation with subject/background control. API: `type: "image-to-video", model: "pixverse-c1-r2v"`. Price: $0.325 per request. Docs: https://renderful.ai/models/pixverse/pixverse-c1-r2v/reference-to-video - **PixVerse C1 Transition** by PixVerse — Smooth AI transitions between two images. API: `type: "image-to-video", model: "pixverse-c1-transition"`. Price: $1.1 per request. Docs: https://renderful.ai/models/pixverse/pixverse-c1-transition/transition - **Tennis Trend** by Renderful — Tennis Trend video effect. API: `type: "image-to-video", model: "kling-ve-tennis-trend"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-tennis-trend/image-to-video - **Tennis Trend 9:16** by Renderful — Tennis Trend 9:16 video effect. API: `type: "image-to-video", model: "kling-ve-tennis-trend-9-16"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-tennis-trend-9-16/image-to-video - **Korean Baseball** by Renderful — Korean Baseball video effect. API: `type: "image-to-video", model: "kling-ve-korean-baseball"`. Price: $1.12 per request. Docs: https://renderful.ai/models/renderful/kling-ve-korean-baseball/image-to-video - **Korean Baseball 9:16** by Renderful — Korean Baseball 9:16 video effect. API: `type: "image-to-video", model: "kling-ve-korean-baseball-9-16"`. Price: $1.12 per request. Docs: https://renderful.ai/models/renderful/kling-ve-korean-baseball-9-16/image-to-video - **F1 Live** by Renderful — F1 Live video effect. API: `type: "image-to-video", model: "kling-ve-f1-live"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-f1-live/image-to-video - **Football Live** by Renderful — Football Live video effect. API: `type: "image-to-video", model: "kling-ve-football-live"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-football-live/image-to-video - **Football Live 9:16** by Renderful — Football Live 9:16 video effect. API: `type: "image-to-video", model: "kling-ve-football-live-9-16"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-football-live-9-16/image-to-video - **Knock At A Door Revenge** by Renderful — Knock At A Door Revenge video effect. API: `type: "image-to-video", model: "kling-ve-knock-at-a-door-revenge"`. Price: $0.84 per request. Docs: https://renderful.ai/models/renderful/kling-ve-knock-at-a-door-revenge/image-to-video - **Bloodline Dance** by Renderful — Bloodline Dance video effect. API: `type: "image-to-video", model: "kling-ve-bloodline-dance"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bloodline-dance/image-to-video - **Love Theme Song** by Renderful — Love Theme Song video effect. API: `type: "image-to-video", model: "kling-ve-love-theme-song"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-love-theme-song/image-to-video - **Sassy Shake** by Renderful — Sassy Shake video effect. API: `type: "image-to-video", model: "kling-ve-sassy-shake"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-sassy-shake/image-to-video - **Raid Check** by Renderful — Raid Check video effect. API: `type: "image-to-video", model: "kling-ve-raid-check"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-raid-check/image-to-video - **Tiny Beast Printer** by Renderful — Tiny Beast Printer video effect. API: `type: "image-to-video", model: "kling-ve-tiny-beast-printer"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-tiny-beast-printer/image-to-video - **Air Dunk** by Renderful — Air Dunk video effect. API: `type: "image-to-video", model: "kling-ve-air-dunk"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-air-dunk/image-to-video - **Whirling Beverage** by Renderful — Whirling Beverage video effect. API: `type: "image-to-video", model: "kling-ve-whirling-beverage"`. Price: $1.26 per request. Docs: https://renderful.ai/models/renderful/kling-ve-whirling-beverage/image-to-video - **Spielberg Transition** by Renderful — Spielberg Transition video effect. API: `type: "image-to-video", model: "kling-ve-spielberg-transition"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-spielberg-transition/image-to-video - **Pet Skateboard** by Renderful — Pet Skateboard video effect. API: `type: "image-to-video", model: "kling-ve-pet-skateboard"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-skateboard/image-to-video - **Daily OOTD** by Renderful — Daily OOTD video effect. API: `type: "image-to-video", model: "kling-ve-daily-ootd"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-daily-ootd/image-to-video - **Landmark Reveal** by Renderful — Landmark Reveal video effect. API: `type: "image-to-video", model: "kling-ve-landmark-reveal"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-landmark-reveal/image-to-video - **Toss & Run** by Renderful — Toss & Run video effect. API: `type: "image-to-video", model: "kling-ve-toss-run"`. Price: $0.84 per request. Docs: https://renderful.ai/models/renderful/kling-ve-toss-run/image-to-video - **Winter Charm** by Renderful — Winter Charm video effect. API: `type: "image-to-video", model: "kling-ve-winter-charm"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-winter-charm/image-to-video - **Flash Ride** by Renderful — Flash Ride video effect. API: `type: "image-to-video", model: "kling-ve-flash-ride"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-flash-ride/image-to-video - **Maestro Of Magic** by Renderful — Maestro Of Magic video effect. API: `type: "image-to-video", model: "kling-ve-maestro-of-magic"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-maestro-of-magic/image-to-video - **Magic Carpet Ride** by Renderful — Magic Carpet Ride video effect. API: `type: "image-to-video", model: "kling-ve-magic-carpet-ride"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-magic-carpet-ride/image-to-video - **Good Luck Spirit** by Renderful — Good Luck Spirit video effect. API: `type: "image-to-video", model: "kling-ve-good-luck-spirit"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-good-luck-spirit/image-to-video - **Shooting Star** by Renderful — Shooting Star video effect. API: `type: "image-to-video", model: "kling-ve-shooting-star"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-shooting-star/image-to-video - **Sparkler Wand** by Renderful — Sparkler Wand video effect. API: `type: "image-to-video", model: "kling-ve-sparkler-wand"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-sparkler-wand/image-to-video - **Sovereign Scepter** by Renderful — Sovereign Scepter video effect. API: `type: "image-to-video", model: "kling-ve-sovereign-scepter"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-sovereign-scepter/image-to-video - **Dirt Rush** by Renderful — Dirt Rush video effect. API: `type: "image-to-video", model: "kling-ve-dirt-rush"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dirt-rush/image-to-video - **Return Of The King** by Renderful — Return Of The King video effect. API: `type: "image-to-video", model: "kling-ve-return-of-the-king"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-return-of-the-king/image-to-video - **Dance With Dragon** by Renderful — Dance With Dragon video effect. API: `type: "image-to-video", model: "kling-ve-dance-with-dragon"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dance-with-dragon/image-to-video - **Minimalist Light** by Renderful — Minimalist Light video effect. API: `type: "image-to-video", model: "kling-ve-minimalist-light"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-minimalist-light/image-to-video - **Martial Meow** by Renderful — Martial Meow video effect. API: `type: "image-to-video", model: "kling-ve-martial-meow"`. Price: $1.12 per request. Docs: https://renderful.ai/models/renderful/kling-ve-martial-meow/image-to-video - **Palm Sized Figure Pro** by Renderful — Palm Sized Figure Pro video effect. API: `type: "image-to-video", model: "kling-ve-palm-sized-figure-pro"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-palm-sized-figure-pro/image-to-video - **Perler Beads** by Renderful — Perler Beads video effect. API: `type: "image-to-video", model: "kling-ve-perler-beads"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-perler-beads/image-to-video - **Spring Bloom** by Renderful — Spring Bloom video effect. API: `type: "image-to-video", model: "kling-ve-spring-bloom"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-spring-bloom/image-to-video - **Switch To Silk** by Renderful — Switch To Silk video effect. API: `type: "image-to-video", model: "kling-ve-switch-to-silk"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-switch-to-silk/image-to-video - **Get Rich Quick** by Renderful — Get Rich Quick video effect. API: `type: "image-to-video", model: "kling-ve-get-rich-quick"`. Price: $1.19 per request. Docs: https://renderful.ai/models/renderful/kling-ve-get-rich-quick/image-to-video - **Make It Rain** by Renderful — Make It Rain video effect. API: `type: "image-to-video", model: "kling-ve-make-it-rain"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-make-it-rain/image-to-video - **Twist Shake** by Renderful — Twist Shake video effect. API: `type: "image-to-video", model: "kling-ve-twist-shake"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-twist-shake/image-to-video - **The Hip Sway** by Renderful — The Hip Sway video effect. API: `type: "image-to-video", model: "kling-ve-the-hip-sway"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-the-hip-sway/image-to-video - **Send My Love!** by Renderful — Send My Love! video effect. API: `type: "image-to-video", model: "kling-ve-send-my-love"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-send-my-love/image-to-video - **Funky Martian** by Renderful — Funky Martian video effect. API: `type: "image-to-video", model: "kling-ve-funky-martian"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-funky-martian/image-to-video - **Wealth Drive** by Renderful — Wealth Drive video effect. API: `type: "image-to-video", model: "kling-ve-wealth-drive"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-wealth-drive/image-to-video - **The High Kick** by Renderful — The High Kick video effect. API: `type: "image-to-video", model: "kling-ve-the-high-kick"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-the-high-kick/image-to-video - **The Exercise** by Renderful — The Exercise video effect. API: `type: "image-to-video", model: "kling-ve-the-exercise"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-the-exercise/image-to-video - **Lucky Veggie** by Renderful — Lucky Veggie video effect. API: `type: "image-to-video", model: "kling-ve-lucky-veggie"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lucky-veggie/image-to-video - **Prank Box** by Renderful — Prank Box video effect. API: `type: "image-to-video", model: "kling-ve-prank-box"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-prank-box/image-to-video - **Color Mixing** by Renderful — Color Mixing video effect. API: `type: "image-to-video", model: "kling-ve-color-mixing"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-color-mixing/image-to-video - **Studio Look** by Renderful — Studio Look video effect. API: `type: "image-to-video", model: "kling-ve-studio-look"`. Price: $1.12 per request. Docs: https://renderful.ai/models/renderful/kling-ve-studio-look/image-to-video - **Flash Drive** by Renderful — Flash Drive video effect. API: `type: "image-to-video", model: "kling-ve-flash-drive"`. Price: $1.19 per request. Docs: https://renderful.ai/models/renderful/kling-ve-flash-drive/image-to-video - **Shush! My Dreams** by Renderful — Shush! My Dreams video effect. API: `type: "image-to-video", model: "kling-ve-shush-my-dreams"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-shush-my-dreams/image-to-video - **French Elegance** by Renderful — French Elegance video effect. API: `type: "image-to-video", model: "kling-ve-french-elegance"`. Price: $1.26 per request. Docs: https://renderful.ai/models/renderful/kling-ve-french-elegance/image-to-video - **Finger Swipe** by Renderful — Finger Swipe video effect. API: `type: "image-to-video", model: "kling-ve-finger-swipe"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-finger-swipe/image-to-video - **Advent of Flora** by Renderful — Advent of Flora video effect. API: `type: "image-to-video", model: "kling-ve-advent-of-flora"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-advent-of-flora/image-to-video - **Smooth Transition** by Renderful — Smooth Transition video effect. API: `type: "image-to-video", model: "kling-ve-smooth-transition"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-smooth-transition/image-to-video - **Skyfall** by Renderful — Skyfall video effect. API: `type: "image-to-video", model: "kling-ve-skyfall"`. Price: $1.08 per request. Docs: https://renderful.ai/models/renderful/kling-ve-skyfall/image-to-video - **Snow Night Kiss** by Renderful — Snow Night Kiss video effect. API: `type: "image-to-video", model: "kling-ve-snow-night-kiss"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-snow-night-kiss/image-to-video - **Eternal Kiss** by Renderful — Eternal Kiss video effect. API: `type: "image-to-video", model: "kling-ve-eternal-kiss"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-eternal-kiss/image-to-video - **Palm Sized Figure** by Renderful — Palm Sized Figure video effect. API: `type: "image-to-video", model: "kling-ve-palm-sized-figure"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-palm-sized-figure/image-to-video - **Tangyuan To Animal** by Renderful — Tangyuan To Animal video effect. API: `type: "image-to-video", model: "kling-ve-tangyuan-to-animal"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-tangyuan-to-animal/image-to-video - **Lantern Festival Cuju** by Renderful — Lantern Festival Cuju video effect. API: `type: "image-to-video", model: "kling-ve-lantern-festival-cuju"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lantern-festival-cuju/image-to-video - **Fortune In Motion** by Renderful — Fortune In Motion video effect. API: `type: "image-to-video", model: "kling-ve-fortune-in-motion"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fortune-in-motion/image-to-video - **Chinese Trend** by Renderful — Chinese Trend video effect. API: `type: "image-to-video", model: "kling-ve-chinese-trend"`. Price: $1.05 per request. Docs: https://renderful.ai/models/renderful/kling-ve-chinese-trend/image-to-video - **Sedan Chair Dance** by Renderful — Sedan Chair Dance video effect. API: `type: "image-to-video", model: "kling-ve-sedan-chair-dance"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-sedan-chair-dance/image-to-video - **Expression Challenge** by Renderful — Expression Challenge video effect. API: `type: "image-to-video", model: "kling-ve-expression-challenge"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-expression-challenge/image-to-video - **Drunk Dance** by Renderful — Drunk Dance video effect. API: `type: "image-to-video", model: "kling-ve-drunk-dance"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-drunk-dance/image-to-video - **Drunk Dance Pet** by Renderful — Drunk Dance Pet video effect. API: `type: "image-to-video", model: "kling-ve-drunk-dance-pet"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-drunk-dance-pet/image-to-video - **Daoma Dance** by Renderful — Daoma Dance video effect. API: `type: "image-to-video", model: "kling-ve-daoma-dance"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-daoma-dance/image-to-video - **Bouncy Dance** by Renderful — Bouncy Dance video effect. API: `type: "image-to-video", model: "kling-ve-bouncy-dance"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bouncy-dance/image-to-video - **Smooth Sailing Dance** by Renderful — Smooth Sailing Dance video effect. API: `type: "image-to-video", model: "kling-ve-smooth-sailing-dance"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-smooth-sailing-dance/image-to-video - **Hot Feet Dance** by Renderful — Hot Feet Dance video effect. API: `type: "image-to-video", model: "kling-ve-hot-feet-dance"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-hot-feet-dance/image-to-video - **Swag Dance** by Renderful — Swag Dance video effect. API: `type: "image-to-video", model: "kling-ve-swag-dance"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-swag-dance/image-to-video - **Pigeon Dance** by Renderful — Pigeon Dance video effect. API: `type: "image-to-video", model: "kling-ve-pigeon-dance"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pigeon-dance/image-to-video - **Chanel Dance** by Renderful — Chanel Dance video effect. API: `type: "image-to-video", model: "kling-ve-chanel-dance"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-chanel-dance/image-to-video - **Cute Dance** by Renderful — Cute Dance video effect. API: `type: "image-to-video", model: "kling-ve-cute-dance"`. Price: $0.84 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cute-dance/image-to-video - **Pumpitup Dance** by Renderful — Pumpitup Dance video effect. API: `type: "image-to-video", model: "kling-ve-pumpitup-dance"`. Price: $0.77 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pumpitup-dance/image-to-video - **OverDrive** by Renderful — OverDrive video effect. API: `type: "image-to-video", model: "kling-ve-overdrive"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-overdrive/image-to-video - **Heart Gesture Dance** by Renderful — Heart Gesture Dance video effect. API: `type: "image-to-video", model: "kling-ve-heart-gesture-dance"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-heart-gesture-dance/image-to-video - **Motorcycle Dance** by Renderful — Motorcycle Dance video effect. API: `type: "image-to-video", model: "kling-ve-motorcycle-dance"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-motorcycle-dance/image-to-video - **Subject 3 Dance** by Renderful — Subject 3 Dance video effect. API: `type: "image-to-video", model: "kling-ve-subject-3-dance"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-subject-3-dance/image-to-video - **Ghost Step Dance** by Renderful — Ghost Step Dance video effect. API: `type: "image-to-video", model: "kling-ve-ghost-step-dance"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-ghost-step-dance/image-to-video - **Yangge Dance** by Renderful — Yangge Dance video effect. API: `type: "image-to-video", model: "kling-ve-yangge-dance"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-yangge-dance/image-to-video - **Good Luck Dance** by Renderful — Good Luck Dance video effect. API: `type: "image-to-video", model: "kling-ve-good-luck-dance"`. Price: $0.91 per request. Docs: https://renderful.ai/models/renderful/kling-ve-good-luck-dance/image-to-video - **Laicai Dance** by Renderful — Laicai Dance video effect. API: `type: "image-to-video", model: "kling-ve-laicai-dance"`. Price: $0.91 per request. Docs: https://renderful.ai/models/renderful/kling-ve-laicai-dance/image-to-video - **Unique Firework** by Renderful — Unique Firework video effect. API: `type: "image-to-video", model: "kling-ve-unique-firework"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-unique-firework/image-to-video - **Unique Spring Couplets** by Renderful — Unique Spring Couplets video effect. API: `type: "image-to-video", model: "kling-ve-unique-spring-couplets"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-unique-spring-couplets/image-to-video - **City To Village** by Renderful — City To Village video effect. API: `type: "image-to-video", model: "kling-ve-city-to-village"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-city-to-village/image-to-video - **Fortune Knocks Cartoon** by Renderful — Fortune Knocks Cartoon video effect. API: `type: "image-to-video", model: "kling-ve-fortune-knocks-cartoon"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fortune-knocks-cartoon/image-to-video - **Fortune God Transform** by Renderful — Fortune God Transform video effect. API: `type: "image-to-video", model: "kling-ve-fortune-god-transform"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fortune-god-transform/image-to-video - **New Year Feast** by Renderful — New Year Feast video effect. API: `type: "image-to-video", model: "kling-ve-new-year-feast"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-new-year-feast/image-to-video - **Ring In New** by Renderful — Ring In New video effect. API: `type: "image-to-video", model: "kling-ve-ring-in-new"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-ring-in-new/image-to-video - **New Year Greeting** by Renderful — New Year Greeting video effect. API: `type: "image-to-video", model: "kling-ve-new-year-greeting"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-new-year-greeting/image-to-video - **Lion Dance** by Renderful — Lion Dance video effect. API: `type: "image-to-video", model: "kling-ve-lion-dance"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lion-dance/image-to-video - **Prosperity** by Renderful — Prosperity video effect. API: `type: "image-to-video", model: "kling-ve-prosperity"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-prosperity/image-to-video - **Great Success** by Renderful — Great Success video effect. API: `type: "image-to-video", model: "kling-ve-great-success"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-great-success/image-to-video - **Horse Year Firework** by Renderful — Horse Year Firework video effect. API: `type: "image-to-video", model: "kling-ve-horse-year-firework"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-horse-year-firework/image-to-video - **Golden Horse Fortune** by Renderful — Golden Horse Fortune video effect. API: `type: "image-to-video", model: "kling-ve-golden-horse-fortune"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-golden-horse-fortune/image-to-video - **Red Packet Unboxing** by Renderful — Red Packet Unboxing video effect. API: `type: "image-to-video", model: "kling-ve-red-packet-box"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-red-packet-box/image-to-video - **Lucky Horse Year** by Renderful — Lucky Horse Year video effect. API: `type: "image-to-video", model: "kling-ve-lucky-horse-year"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lucky-horse-year/image-to-video - **Horse Mask** by Renderful — Horse Mask video effect. API: `type: "image-to-video", model: "kling-ve-horse-mask"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-horse-mask/image-to-video - **Lucky Red Packet** by Renderful — Lucky Red Packet video effect. API: `type: "image-to-video", model: "kling-ve-lucky-red-packet"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lucky-red-packet/image-to-video - **Lucky Money Come** by Renderful — Lucky Money Come video effect. API: `type: "image-to-video", model: "kling-ve-lucky-money-come"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lucky-money-come/image-to-video - **Lion Dance Pet** by Renderful — Lion Dance Pet video effect. API: `type: "image-to-video", model: "kling-ve-lion-dance-pet"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lion-dance-pet/image-to-video - **Dumpling Making Pet** by Renderful — Dumpling Making Pet video effect. API: `type: "image-to-video", model: "kling-ve-dumpling-making-pet"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dumpling-making-pet/image-to-video - **Fish Making Pet** by Renderful — Fish Making Pet video effect. API: `type: "image-to-video", model: "kling-ve-fish-making-pet"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fish-making-pet/image-to-video - **Pet Red Packet** by Renderful — Pet Red Packet video effect. API: `type: "image-to-video", model: "kling-ve-pet-red-packet"`. Price: $0.22 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-red-packet/image-to-video - **Lantern Glow** by Renderful — Lantern Glow video effect. API: `type: "image-to-video", model: "kling-ve-lantern-glow"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lantern-glow/image-to-video - **Crystal Horse** by Renderful — Crystal Horse video effect. API: `type: "image-to-video", model: "kling-ve-crystal-horse"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-crystal-horse/image-to-video - **Poping** by Renderful — Poping video effect. API: `type: "image-to-video", model: "kling-ve-poping"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-poping/image-to-video - **Martial Arts** by Renderful — Martial Arts video effect. API: `type: "image-to-video", model: "kling-ve-martial-arts"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-martial-arts/image-to-video - **Running** by Renderful — Running video effect. API: `type: "image-to-video", model: "kling-ve-running"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-running/image-to-video - **Nezha** by Renderful — Nezha video effect. API: `type: "image-to-video", model: "kling-ve-nezha"`. Price: $0.63 per request. Docs: https://renderful.ai/models/renderful/kling-ve-nezha/image-to-video - **Phantom Jewel** by Renderful — Phantom Jewel video effect. API: `type: "image-to-video", model: "kling-ve-phantom-jewel"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-phantom-jewel/image-to-video - **Lateral Shift Transition** by Renderful — Lateral Shift Transition video effect. API: `type: "image-to-video", model: "kling-ve-lateral-shift-transition"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lateral-shift-transition/image-to-video - **Zoom Out** by Renderful — Zoom Out video effect. API: `type: "image-to-video", model: "kling-ve-zoom-out"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-zoom-out/image-to-video - **Cheers 2026** by Renderful — Cheers 2026 video effect. API: `type: "image-to-video", model: "kling-ve-cheers-2026"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cheers-2026/image-to-video - **Countdown Teleport** by Renderful — Countdown Teleport video effect. API: `type: "image-to-video", model: "kling-ve-countdown-teleport"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-countdown-teleport/image-to-video - **2026 Ignite** by Renderful — 2026 Ignite video effect. API: `type: "image-to-video", model: "kling-ve-firework-2026"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-firework-2026/image-to-video - **Glamour Photo Shoot** by Renderful — Glamour Photo Shoot video effect. API: `type: "image-to-video", model: "kling-ve-glamour-photo-shoot"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-glamour-photo-shoot/image-to-video - **Box Of Joy** by Renderful — Box Of Joy video effect. API: `type: "image-to-video", model: "kling-ve-box-of-joy"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-box-of-joy/image-to-video - **First Toast Of The Year** by Renderful — First Toast Of The Year video effect. API: `type: "image-to-video", model: "kling-ve-first-toast-of-the-year"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-first-toast-of-the-year/image-to-video - **Elf's Playful Spell** by Renderful — Elf's Playful Spell video effect. API: `type: "image-to-video", model: "kling-ve-santa-random-surprise"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-santa-random-surprise/image-to-video - **Magic Match Tree** by Renderful — Magic Match Tree video effect. API: `type: "image-to-video", model: "kling-ve-magic-match-tree"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-magic-match-tree/image-to-video - **My Santa Pic** by Renderful — My Santa Pic video effect. API: `type: "image-to-video", model: "kling-ve-my-santa-pic"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-my-santa-pic/image-to-video - **Santa Gift** by Renderful — Santa Gift video effect. API: `type: "image-to-video", model: "kling-ve-santa-gift"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-santa-gift/image-to-video - **Steampunk Christmas** by Renderful — Steampunk Christmas video effect. API: `type: "image-to-video", model: "kling-ve-steampunk-christmas"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-steampunk-christmas/image-to-video - **Snowglobe** by Renderful — Snowglobe video effect. API: `type: "image-to-video", model: "kling-ve-snowglobe"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-snowglobe/image-to-video - **Christmas Photo Shoot** by Renderful — Christmas Photo Shoot video effect. API: `type: "image-to-video", model: "kling-ve-christmas-photo-shoot"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-christmas-photo-shoot/image-to-video - **Ornament Crash** by Renderful — Ornament Crash video effect. API: `type: "image-to-video", model: "kling-ve-ornament-crash"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-ornament-crash/image-to-video - **Santa Express** by Renderful — Santa Express video effect. API: `type: "image-to-video", model: "kling-ve-santa-express"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-santa-express/image-to-video - **Instant Christmas** by Renderful — Instant Christmas video effect. API: `type: "image-to-video", model: "kling-ve-instant-christmas"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-instant-christmas/image-to-video - **Particle Santa Surround** by Renderful — Particle Santa Surround video effect. API: `type: "image-to-video", model: "kling-ve-particle-santa-surround"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-particle-santa-surround/image-to-video - **Jumping Ginger Joy** by Renderful — Jumping Ginger Joy video effect. API: `type: "image-to-video", model: "kling-ve-jumping-ginger-joy"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jumping-ginger-joy/image-to-video - **Coronation of Frost** by Renderful — Coronation of Frost video effect. API: `type: "image-to-video", model: "kling-ve-coronation-of-frost"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-coronation-of-frost/image-to-video - **Building Sweater** by Renderful — Building Sweater video effect. API: `type: "image-to-video", model: "kling-ve-building-sweater"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-building-sweater/image-to-video - **Spark In The Snow** by Renderful — Spark In The Snow video effect. API: `type: "image-to-video", model: "kling-ve-spark-in-the-snow"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-spark-in-the-snow/image-to-video - **Scarlet And Snow** by Renderful — Scarlet And Snow video effect. API: `type: "image-to-video", model: "kling-ve-scarlet-and-snow"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-scarlet-and-snow/image-to-video - **Cozy Toon Wrap** by Renderful — Cozy Toon Wrap video effect. API: `type: "image-to-video", model: "kling-ve-cozy-toon-wrap"`. Price: $0.38 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cozy-toon-wrap/image-to-video - **Snowboarding** by Renderful — Snowboarding video effect. API: `type: "image-to-video", model: "kling-ve-snowboarding"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-snowboarding/image-to-video - **Bullet Time Pro** by Renderful — Bullet Time Pro video effect. API: `type: "image-to-video", model: "kling-ve-bullet-time-lite"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bullet-time-lite/image-to-video - **Bullet Time** by Renderful — Bullet Time video effect. API: `type: "image-to-video", model: "kling-ve-bullet-time"`. Price: $0.98 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bullet-time/image-to-video - **Magic Cloak** by Renderful — Magic Cloak video effect. API: `type: "image-to-video", model: "kling-ve-magic-cloak"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-magic-cloak/image-to-video - **Bullet Time 360** by Renderful — Bullet Time 360 video effect. API: `type: "image-to-video", model: "kling-ve-bullet-time-360"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bullet-time-360/image-to-video - **Cake Delivery** by Renderful — Cake Delivery video effect. API: `type: "image-to-video", model: "kling-ve-happy-birthday"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-happy-birthday/image-to-video - **Birthday Star** by Renderful — Birthday Star video effect. API: `type: "image-to-video", model: "kling-ve-birthday-star"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-birthday-star/image-to-video - **Heart Gesture Pro** by Renderful — Heart Gesture Pro video effect. API: `type: "image-to-video", model: "kling-ve-heart-gesture-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-heart-gesture-pro/image-to-video - **Fight Pro** by Renderful — Fight Pro video effect. API: `type: "image-to-video", model: "kling-ve-fight-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fight-pro/image-to-video - **Hug Pro** by Renderful — Hug Pro video effect. API: `type: "image-to-video", model: "kling-ve-hug-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-hug-pro/image-to-video - **Kiss Pro** by Renderful — Kiss Pro video effect. API: `type: "image-to-video", model: "kling-ve-kiss-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-kiss-pro/image-to-video - **Dollar Rain Pro** by Renderful — Dollar Rain Pro video effect. API: `type: "image-to-video", model: "kling-ve-dollar-rain-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dollar-rain-pro/image-to-video - **Pet Bee Pro** by Renderful — Pet Bee Pro video effect. API: `type: "image-to-video", model: "kling-ve-pet-bee-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-bee-pro/image-to-video - **Thumbs Up Pro** by Renderful — Thumbs Up Pro video effect. API: `type: "image-to-video", model: "kling-ve-thumbs-up-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-thumbs-up-pro/image-to-video - **Tiger Hug Pro** by Renderful — Tiger Hug Pro video effect. API: `type: "image-to-video", model: "kling-ve-tiger-hug-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-tiger-hug-pro/image-to-video - **Pet Lion Pro** by Renderful — Pet Lion Pro video effect. API: `type: "image-to-video", model: "kling-ve-pet-lion-pro"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-lion-pro/image-to-video - **Surprise Bouquet** by Renderful — Surprise Bouquet video effect. API: `type: "image-to-video", model: "kling-ve-surprise-bouquet"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-surprise-bouquet/image-to-video - **Bouquet Drop** by Renderful — Bouquet Drop video effect. API: `type: "image-to-video", model: "kling-ve-bouquet-drop"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bouquet-drop/image-to-video - **3D Cartoon 1 Pro** by Renderful — 3D Cartoon 1 Pro video effect. API: `type: "image-to-video", model: "kling-ve-3d-cartoon-1-pro"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-3d-cartoon-1-pro/image-to-video - **C4D Cartoon Pro** by Renderful — C4D Cartoon Pro video effect. API: `type: "image-to-video", model: "kling-ve-c4d-cartoon-pro"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-c4d-cartoon-pro/image-to-video - **Balloon Parade** by Renderful — Balloon Parade video effect. API: `type: "image-to-video", model: "kling-ve-balloon-parade"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-balloon-parade/image-to-video - **Pure White Wing** by Renderful — Pure White Wing video effect. API: `type: "image-to-video", model: "kling-ve-pure-white-wings"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pure-white-wings/image-to-video - **Black Wing** by Renderful — Black Wing video effect. API: `type: "image-to-video", model: "kling-ve-black-wings"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-black-wings/image-to-video - **Golden Wing** by Renderful — Golden Wing video effect. API: `type: "image-to-video", model: "kling-ve-golden-wing"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-golden-wing/image-to-video - **Pink Wing** by Renderful — Pink Wing video effect. API: `type: "image-to-video", model: "kling-ve-pink-pink-wings"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pink-pink-wings/image-to-video - **Venomous Spider** by Renderful — Venomous Spider video effect. API: `type: "image-to-video", model: "kling-ve-venomous-spider"`. Price: $0.21 per request. Docs: https://renderful.ai/models/renderful/kling-ve-venomous-spider/image-to-video - **Throne of King** by Renderful — Throne of King video effect. API: `type: "image-to-video", model: "kling-ve-throne-of-king"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-throne-of-king/image-to-video - **Luminous Elf** by Renderful — Luminous Elf video effect. API: `type: "image-to-video", model: "kling-ve-luminous-elf"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-luminous-elf/image-to-video - **Woodland Elf** by Renderful — Woodland Elf video effect. API: `type: "image-to-video", model: "kling-ve-woodland-elf"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-woodland-elf/image-to-video - **Japanese Anime 1** by Renderful — Japanese Anime 1 video effect. API: `type: "image-to-video", model: "kling-ve-japanese-anime-1"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-japanese-anime-1/image-to-video - **American Comics** by Renderful — American Comics video effect. API: `type: "image-to-video", model: "kling-ve-american-comics"`. Price: $0.24 per request. Docs: https://renderful.ai/models/renderful/kling-ve-american-comics/image-to-video - **Guardian Spirit** by Renderful — Guardian Spirit video effect. API: `type: "image-to-video", model: "kling-ve-guardian-spirit"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-guardian-spirit/image-to-video - **Swish Swish** by Renderful — Swish Swish video effect. API: `type: "image-to-video", model: "kling-ve-swish-swish"`. Price: $0.35 per request. Docs: https://renderful.ai/models/renderful/kling-ve-swish-swish/image-to-video - **Witch Transform** by Renderful — Witch Transform video effect. API: `type: "image-to-video", model: "kling-ve-witch-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-witch-transform/image-to-video - **Vampire Transform** by Renderful — Vampire Transform video effect. API: `type: "image-to-video", model: "kling-ve-vampire-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-vampire-transform/image-to-video - **Pumpkin Head Transform** by Renderful — Pumpkin Head Transform video effect. API: `type: "image-to-video", model: "kling-ve-pumpkin-head-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pumpkin-head-transform/image-to-video - **Demon Transform** by Renderful — Demon Transform video effect. API: `type: "image-to-video", model: "kling-ve-demon-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-demon-transform/image-to-video - **Mummy Transform** by Renderful — Mummy Transform video effect. API: `type: "image-to-video", model: "kling-ve-mummy-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-mummy-transform/image-to-video - **Zombie Transform** by Renderful — Zombie Transform video effect. API: `type: "image-to-video", model: "kling-ve-zombie-transform"`. Price: $0.42 per request. Docs: https://renderful.ai/models/renderful/kling-ve-zombie-transform/image-to-video - **Cute Pumpkin Transform** by Renderful — Cute Pumpkin Transform video effect. API: `type: "image-to-video", model: "kling-ve-cute-pumpkin-transform"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cute-pumpkin-transform/image-to-video - **Cute Ghost Transform** by Renderful — Cute Ghost Transform video effect. API: `type: "image-to-video", model: "kling-ve-cute-ghost-transform"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cute-ghost-transform/image-to-video - **Knock Knock Halloween** by Renderful — Knock Knock Halloween video effect. API: `type: "image-to-video", model: "kling-ve-knock-knock-halloween"`. Price: $0.56 per request. Docs: https://renderful.ai/models/renderful/kling-ve-knock-knock-halloween/image-to-video - **Halloween Escape** by Renderful — Halloween Escape video effect. API: `type: "image-to-video", model: "kling-ve-halloween-escape"`. Price: $0.7 per request. Docs: https://renderful.ai/models/renderful/kling-ve-halloween-escape/image-to-video - **Rampage Ape** by Renderful — Rampage Ape video effect. API: `type: "image-to-video", model: "kling-ve-rampage-ape"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-rampage-ape/image-to-video - **Pet Chinese Opera** by Renderful — Pet Chinese Opera video effect. API: `type: "image-to-video", model: "kling-ve-pet-chinese-opera"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-chinese-opera/image-to-video - **Magic Fireball** by Renderful — Magic Fireball video effect. API: `type: "image-to-video", model: "kling-ve-magic-fireball"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-magic-fireball/image-to-video - **Pet Moto Rider** by Renderful — Pet Moto Rider video effect. API: `type: "image-to-video", model: "kling-ve-pet-moto-rider"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-moto-rider/image-to-video - **Squeeze Scream** by Renderful — Squeeze Scream video effect. API: `type: "image-to-video", model: "kling-ve-squeeze-scream"`. Price: $0.17 per request. Docs: https://renderful.ai/models/renderful/kling-ve-squeeze-scream/image-to-video - **Gallery Ring** by Renderful — Gallery Ring video effect. API: `type: "image-to-video", model: "kling-ve-gallery-ring"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-gallery-ring/image-to-video - **Muscle Pet** by Renderful — Muscle Pet video effect. API: `type: "image-to-video", model: "kling-ve-muscle-pet"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-muscle-pet/image-to-video - **Pet Delivery** by Renderful — Pet Delivery video effect. API: `type: "image-to-video", model: "kling-ve-pet-delivery"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-delivery/image-to-video - **Baseball** by Renderful — Baseball video effect. API: `type: "image-to-video", model: "kling-ve-baseball"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-baseball/image-to-video - **Inner Voice** by Renderful — Inner Voice video effect. API: `type: "image-to-video", model: "kling-ve-inner-voice"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-inner-voice/image-to-video - **A List Look** by Renderful — A List Look video effect. API: `type: "image-to-video", model: "kling-ve-a-list-look"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-a-list-look/image-to-video - **Memory Alive** by Renderful — Memory Alive video effect. API: `type: "image-to-video", model: "kling-ve-memory-alive"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-memory-alive/image-to-video - **Trampoline** by Renderful — Trampoline video effect. API: `type: "image-to-video", model: "kling-ve-trampoline"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-trampoline/image-to-video - **Trampoline Night** by Renderful — Trampoline Night video effect. API: `type: "image-to-video", model: "kling-ve-trampoline-night"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-trampoline-night/image-to-video - **Pucker Up** by Renderful — Pucker Up video effect. API: `type: "image-to-video", model: "kling-ve-pucker-up"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pucker-up/image-to-video - **Guess What** by Renderful — Guess What video effect. API: `type: "image-to-video", model: "kling-ve-guess-what"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-guess-what/image-to-video - **Feed Mooncake** by Renderful — Feed Mooncake video effect. API: `type: "image-to-video", model: "kling-ve-feed-mooncake"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-feed-mooncake/image-to-video - **flyer** by Renderful — flyer video effect. API: `type: "image-to-video", model: "kling-ve-flyer"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-flyer/image-to-video - **Dishwasher** by Renderful — Dishwasher video effect. API: `type: "image-to-video", model: "kling-ve-dishwasher"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dishwasher/image-to-video - **Running Man** by Renderful — Running Man video effect. API: `type: "image-to-video", model: "kling-ve-running-man"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-running-man/image-to-video - **Disappear** by Renderful — Disappear video effect. API: `type: "image-to-video", model: "kling-ve-disappear"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-disappear/image-to-video - **​​Mythic Style** by Renderful — ​​Mythic Style video effect. API: `type: "image-to-video", model: "kling-ve-mythic-style"`. Price: $0.17 per request. Docs: https://renderful.ai/models/renderful/kling-ve-mythic-style/image-to-video - **Steampunk** by Renderful — Steampunk video effect. API: `type: "image-to-video", model: "kling-ve-steampunk"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-steampunk/image-to-video - **3D Cartoon 2** by Renderful — 3D Cartoon 2 video effect. API: `type: "image-to-video", model: "kling-ve-3d-cartoon-2"`. Price: $0.17 per request. Docs: https://renderful.ai/models/renderful/kling-ve-3d-cartoon-2/image-to-video - **Eagle Snatch** by Renderful — Eagle Snatch video effect. API: `type: "image-to-video", model: "kling-ve-eagle-snatch"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-eagle-snatch/image-to-video - **Hug From Past** by Renderful — Hug From Past video effect. API: `type: "image-to-video", model: "kling-ve-hug-from-past"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-hug-from-past/image-to-video - **Firework** by Renderful — Firework video effect. API: `type: "image-to-video", model: "kling-ve-firework"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-firework/image-to-video - **Media Interview** by Renderful — Media Interview video effect. API: `type: "image-to-video", model: "kling-ve-media-interview"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-media-interview/image-to-video - **Pet Chef** by Renderful — Pet Chef video effect. API: `type: "image-to-video", model: "kling-ve-pet-chef"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-chef/image-to-video - **Santa Gifts** by Renderful — Santa Gifts video effect. API: `type: "image-to-video", model: "kling-ve-santa-gifts"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-santa-gifts/image-to-video - **Santa Hug** by Renderful — Santa Hug video effect. API: `type: "image-to-video", model: "kling-ve-santa-hug"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-santa-hug/image-to-video - **Heart Gesture 1** by Renderful — Heart Gesture 1 video effect. API: `type: "image-to-video", model: "kling-ve-heart-gesture-1"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-heart-gesture-1/image-to-video - **Pet Wizard** by Renderful — Pet Wizard video effect. API: `type: "image-to-video", model: "kling-ve-pet-wizard"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-wizard/image-to-video - **Smoke Smoke** by Renderful — Smoke Smoke video effect. API: `type: "image-to-video", model: "kling-ve-smoke-smoke"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-smoke-smoke/image-to-video - **Instant Kid** by Renderful — Instant Kid video effect. API: `type: "image-to-video", model: "kling-ve-instant-kid"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-instant-kid/image-to-video - **Dollar Rain** by Renderful — Dollar Rain video effect. API: `type: "image-to-video", model: "kling-ve-dollar-rain"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dollar-rain/image-to-video - **Cry Cry** by Renderful — Cry Cry video effect. API: `type: "image-to-video", model: "kling-ve-cry-cry"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-cry-cry/image-to-video - **Building Collapse** by Renderful — Building Collapse video effect. API: `type: "image-to-video", model: "kling-ve-building-collapse"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-building-collapse/image-to-video - **Gun Shot** by Renderful — Gun Shot video effect. API: `type: "image-to-video", model: "kling-ve-gun-shot"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-gun-shot/image-to-video - **Mushroom** by Renderful — Mushroom video effect. API: `type: "image-to-video", model: "kling-ve-mushroom"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-mushroom/image-to-video - **Double Gun** by Renderful — Double Gun video effect. API: `type: "image-to-video", model: "kling-ve-double-gun"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-double-gun/image-to-video - **Pet Warrior** by Renderful — Pet Warrior video effect. API: `type: "image-to-video", model: "kling-ve-pet-warrior"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-warrior/image-to-video - **Lightning Power** by Renderful — Lightning Power video effect. API: `type: "image-to-video", model: "kling-ve-lightning-power"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lightning-power/image-to-video - **Jesus Hug** by Renderful — Jesus Hug video effect. API: `type: "image-to-video", model: "kling-ve-jesus-hug"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jesus-hug/image-to-video - **Shark Alert** by Renderful — Shark Alert video effect. API: `type: "image-to-video", model: "kling-ve-shark-alert"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-shark-alert/image-to-video - **Long Hair** by Renderful — Long Hair video effect. API: `type: "image-to-video", model: "kling-ve-long-hair"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-long-hair/image-to-video - **Lie flat** by Renderful — Lie flat video effect. API: `type: "image-to-video", model: "kling-ve-lie-flat"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-lie-flat/image-to-video - **Polar Bear Hug** by Renderful — Polar Bear Hug video effect. API: `type: "image-to-video", model: "kling-ve-polar-bear-hug"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-polar-bear-hug/image-to-video - **Brown bear Hug** by Renderful — Brown bear Hug video effect. API: `type: "image-to-video", model: "kling-ve-brown-bear-hug"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-brown-bear-hug/image-to-video - **Jazz Jazz** by Renderful — Jazz Jazz video effect. API: `type: "image-to-video", model: "kling-ve-jazz-jazz"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jazz-jazz/image-to-video - **Office Escape Plow** by Renderful — Office Escape Plow video effect. API: `type: "image-to-video", model: "kling-ve-office-escape-plow"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-office-escape-plow/image-to-video - **Fly Fly** by Renderful — Fly Fly video effect. API: `type: "image-to-video", model: "kling-ve-fly-fly"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fly-fly/image-to-video - **Watermelon Bomb** by Renderful — Watermelon Bomb video effect. API: `type: "image-to-video", model: "kling-ve-watermelon-bomb"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-watermelon-bomb/image-to-video - **Pet Dance** by Renderful — Pet Dance video effect. API: `type: "image-to-video", model: "kling-ve-pet-dance"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-dance/image-to-video - **Boss Coming** by Renderful — Boss Coming video effect. API: `type: "image-to-video", model: "kling-ve-boss-coming"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-boss-coming/image-to-video - **Wool Curly** by Renderful — Wool Curly video effect. API: `type: "image-to-video", model: "kling-ve-wool-curly"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-wool-curly/image-to-video - **Pet Bee** by Renderful — Pet Bee video effect. API: `type: "image-to-video", model: "kling-ve-pet-bee"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pet-bee/image-to-video - **Marry Me** by Renderful — Marry Me video effect. API: `type: "image-to-video", model: "kling-ve-marry-me"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-marry-me/image-to-video - **Swing Swing** by Renderful — Swing Swing video effect. API: `type: "image-to-video", model: "kling-ve-swing-swing"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-swing-swing/image-to-video - **Day To Night** by Renderful — Day To Night video effect. API: `type: "image-to-video", model: "kling-ve-day-to-night"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-day-to-night/image-to-video - **Piggy Morph** by Renderful — Piggy Morph video effect. API: `type: "image-to-video", model: "kling-ve-piggy-morph"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-piggy-morph/image-to-video - **Wig Out** by Renderful — Wig Out video effect. API: `type: "image-to-video", model: "kling-ve-wig-out"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-wig-out/image-to-video - **Car Explosion** by Renderful — Car Explosion video effect. API: `type: "image-to-video", model: "kling-ve-car-explosion"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-car-explosion/image-to-video - **Ski Ski** by Renderful — Ski Ski video effect. API: `type: "image-to-video", model: "kling-ve-ski-ski"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-ski-ski/image-to-video - **Siblings** by Renderful — Siblings video effect. API: `type: "image-to-video", model: "kling-ve-siblings"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-siblings/image-to-video - **Construction Worker** by Renderful — Construction Worker video effect. API: `type: "image-to-video", model: "kling-ve-construction-worker"`. Price: $0.14 per request. Docs: https://renderful.ai/models/renderful/kling-ve-construction-worker/image-to-video - **Let's ride** by Renderful — Let's ride video effect. API: `type: "image-to-video", model: "kling-ve-let-s-ride"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-let-s-ride/image-to-video - **Emoji** by Renderful — Emoji video effect. API: `type: "image-to-video", model: "kling-ve-emoji"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-emoji/image-to-video - **Snatched** by Renderful — Snatched video effect. API: `type: "image-to-video", model: "kling-ve-snatched"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-snatched/image-to-video - **Magic Broom** by Renderful — Magic Broom video effect. API: `type: "image-to-video", model: "kling-ve-magic-broom"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-magic-broom/image-to-video - **Felt Felt** by Renderful — Felt Felt video effect. API: `type: "image-to-video", model: "kling-ve-felt-felt"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-felt-felt/image-to-video - **Jump Drop** by Renderful — Jump Drop video effect. API: `type: "image-to-video", model: "kling-ve-jumpdrop"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jumpdrop/image-to-video - **Surf Surf** by Renderful — Surf Surf video effect. API: `type: "image-to-video", model: "kling-ve-surfsurf"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-surfsurf/image-to-video - **Fairy Wing** by Renderful — Fairy Wing video effect. API: `type: "image-to-video", model: "kling-ve-fairy-wing"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fairy-wing/image-to-video - **Angel Wing** by Renderful — Angel Wing video effect. API: `type: "image-to-video", model: "kling-ve-angel-wing"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-angel-wing/image-to-video - **Dark Wing** by Renderful — Dark Wing video effect. API: `type: "image-to-video", model: "kling-ve-dark-wing"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dark-wing/image-to-video - **Skate Skate** by Renderful — Skate Skate video effect. API: `type: "image-to-video", model: "kling-ve-skateskate"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-skateskate/image-to-video - **Plush Cut** by Renderful — Plush Cut video effect. API: `type: "image-to-video", model: "kling-ve-plushcut"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-plushcut/image-to-video - **Jelly Press** by Renderful — Jelly Press video effect. API: `type: "image-to-video", model: "kling-ve-jelly-press"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jelly-press/image-to-video - **Jelly Slice** by Renderful — Jelly Slice video effect. API: `type: "image-to-video", model: "kling-ve-jelly-slice"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jelly-slice/image-to-video - **Jelly Squish** by Renderful — Jelly Squish video effect. API: `type: "image-to-video", model: "kling-ve-jelly-squish"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jelly-squish/image-to-video - **Jelly Jiggle** by Renderful — Jelly Jiggle video effect. API: `type: "image-to-video", model: "kling-ve-jelly-jiggle"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-jelly-jiggle/image-to-video - **Pixel Pixel** by Renderful — Pixel Pixel video effect. API: `type: "image-to-video", model: "kling-ve-pixelpixel"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-pixelpixel/image-to-video - **Yearbook** by Renderful — Yearbook video effect. API: `type: "image-to-video", model: "kling-ve-yearbook"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-yearbook/image-to-video - **Instant Film** by Renderful — Instant Film video effect. API: `type: "image-to-video", model: "kling-ve-instant-film"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-instant-film/image-to-video - **Anime Figure** by Renderful — Anime Figure video effect. API: `type: "image-to-video", model: "kling-ve-anime-figure"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-anime-figure/image-to-video - **Rocket Rocket** by Renderful — Rocket Rocket video effect. API: `type: "image-to-video", model: "kling-ve-rocketrocket"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-rocketrocket/image-to-video - **Bloom Bloom** by Renderful — Bloom Bloom video effect. API: `type: "image-to-video", model: "kling-ve-bloombloom"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-bloombloom/image-to-video - **Dizzy Dizzy** by Renderful — Dizzy Dizzy video effect. API: `type: "image-to-video", model: "kling-ve-dizzydizzy"`. Price: $0.49 per request. Docs: https://renderful.ai/models/renderful/kling-ve-dizzydizzy/image-to-video - **Fuzzy Fuzzy** by Renderful — Fuzzy Fuzzy video effect. API: `type: "image-to-video", model: "kling-ve-fuzzyfuzzy"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-fuzzyfuzzy/image-to-video - **Squish** by Renderful — Squish video effect. API: `type: "image-to-video", model: "kling-ve-squish"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-squish/image-to-video - **Expansion** by Renderful — Expansion video effect. API: `type: "image-to-video", model: "kling-ve-expansion"`. Price: $0.28 per request. Docs: https://renderful.ai/models/renderful/kling-ve-expansion/image-to-video - **2000s Paparazzi** by Renderful — 2000s Paparazzi video effect. API: `type: "image-to-video", model: "grok-ve-2000s-paparazzi"`. Price: $0.72 per request. Docs: https://renderful.ai/models/renderful/grok-ve-2000s-paparazzi/image-to-video - **Dragon Fantasy** by Renderful — Dragon Fantasy video effect. API: `type: "image-to-video", model: "grok-ve-dragon-fantasy"`. Price: $0.72 per request. Docs: https://renderful.ai/models/renderful/grok-ve-dragon-fantasy/image-to-video - **Casual Monster Slayer** by Renderful — Casual Monster Slayer video effect. API: `type: "image-to-video", model: "grok-ve-casual-monster-slayer"`. Price: $1.35 per request. Docs: https://renderful.ai/models/renderful/grok-ve-casual-monster-slayer/image-to-video - **Kung Fu Hit** by Renderful — Kung Fu Hit video effect. API: `type: "image-to-video", model: "grok-ve-kung-fu-hit"`. Price: $1.35 per request. Docs: https://renderful.ai/models/renderful/grok-ve-kung-fu-hit/image-to-video - **Golf Major** by Renderful — Golf Major video effect. API: `type: "image-to-video", model: "grok-ve-golf-major"`. Price: $0.81 per request. Docs: https://renderful.ai/models/renderful/grok-ve-golf-major/image-to-video - **Blue Depth** by Renderful — Blue Depth video effect. API: `type: "image-to-video", model: "grok-ve-blue-depth"`. Price: $1.08 per request. Docs: https://renderful.ai/models/renderful/grok-ve-blue-depth/image-to-video - **Orbital Presence** by Renderful — Orbital Presence video effect. API: `type: "image-to-video", model: "grok-ve-orbital-presence"`. Price: $0.81 per request. Docs: https://renderful.ai/models/renderful/grok-ve-orbital-presence/image-to-video - **Wrestle** by Renderful — Wrestle video effect. API: `type: "image-to-video", model: "grok-ve-wrestle"`. Price: $1.08 per request. Docs: https://renderful.ai/models/renderful/grok-ve-wrestle/image-to-video - **Earth Zoom In** by Renderful — Earth Zoom In video effect. API: `type: "image-to-video", model: "grok-ve-earth-zoom-in"`. Price: $0.9 per request. Docs: https://renderful.ai/models/renderful/grok-ve-earth-zoom-in/image-to-video - **Earth Zoom Out** by Renderful — Earth Zoom Out video effect. API: `type: "image-to-video", model: "grok-ve-earth-zoom-out"`. Price: $0.72 per request. Docs: https://renderful.ai/models/renderful/grok-ve-earth-zoom-out/image-to-video - **Particle Disintegration** by Renderful — Particle Disintegration video effect. API: `type: "image-to-video", model: "grok-ve-particle-disintegration"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-particle-disintegration/image-to-video - **Building Explosion** by Renderful — Building Explosion video effect. API: `type: "image-to-video", model: "grok-ve-building-explosion"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-building-explosion/image-to-video - **Plasma Burst** by Renderful — Plasma Burst video effect. API: `type: "image-to-video", model: "grok-ve-plasma-burst"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-plasma-burst/image-to-video - **Powder Explosion** by Renderful — Powder Explosion video effect. API: `type: "image-to-video", model: "grok-ve-powder-explosion"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-powder-explosion/image-to-video - **Shatter Break** by Renderful — Shatter Break video effect. API: `type: "image-to-video", model: "grok-ve-shatter-break"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-shatter-break/image-to-video - **Clone Explosion** by Renderful — Clone Explosion video effect. API: `type: "image-to-video", model: "grok-ve-clone-explosion"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-clone-explosion/image-to-video - **Smoke Transition** by Renderful — Smoke Transition video effect. API: `type: "image-to-video", model: "grok-ve-smoke-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-smoke-transition/image-to-video - **Splash Transition** by Renderful — Splash Transition video effect. API: `type: "image-to-video", model: "grok-ve-splash-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-splash-transition/image-to-video - **Flame Transition** by Renderful — Flame Transition video effect. API: `type: "image-to-video", model: "grok-ve-flame-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-flame-transition/image-to-video - **Roll Transition** by Renderful — Roll Transition video effect. API: `type: "image-to-video", model: "grok-ve-roll-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-roll-transition/image-to-video - **Melt Transition** by Renderful — Melt Transition video effect. API: `type: "image-to-video", model: "grok-ve-melt-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-melt-transition/image-to-video - **Portal Jump** by Renderful — Portal Jump video effect. API: `type: "image-to-video", model: "grok-ve-portal-jump"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-portal-jump/image-to-video - **Raven Transition** by Renderful — Raven Transition video effect. API: `type: "image-to-video", model: "grok-ve-raven-transition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-raven-transition/image-to-video - **Seamless Morph** by Renderful — Seamless Morph video effect. API: `type: "image-to-video", model: "grok-ve-seamless-morph"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-seamless-morph/image-to-video - **Fire Element** by Renderful — Fire Element video effect. API: `type: "image-to-video", model: "grok-ve-fire-element"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-fire-element/image-to-video - **Water Bending** by Renderful — Water Bending video effect. API: `type: "image-to-video", model: "grok-ve-water-bending"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-water-bending/image-to-video - **Air Element** by Renderful — Air Element video effect. API: `type: "image-to-video", model: "grok-ve-air-element"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-air-element/image-to-video - **Earth Element** by Renderful — Earth Element video effect. API: `type: "image-to-video", model: "grok-ve-earth-element"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-earth-element/image-to-video - **Lightning Strike** by Renderful — Lightning Strike video effect. API: `type: "image-to-video", model: "grok-ve-lightning-strike"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-lightning-strike/image-to-video - **Ice Freeze** by Renderful — Ice Freeze video effect. API: `type: "image-to-video", model: "grok-ve-ice-freeze"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-ice-freeze/image-to-video - **Turning Metal** by Renderful — Turning Metal video effect. API: `type: "image-to-video", model: "grok-ve-turning-metal"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-turning-metal/image-to-video - **Werewolf** by Renderful — Werewolf video effect. API: `type: "image-to-video", model: "grok-ve-werewolf"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-werewolf/image-to-video - **Cyborg** by Renderful — Cyborg video effect. API: `type: "image-to-video", model: "grok-ve-cyborg"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-cyborg/image-to-video - **Animalization** by Renderful — Animalization video effect. API: `type: "image-to-video", model: "grok-ve-animalization"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-animalization/image-to-video - **Melting** by Renderful — Melting video effect. API: `type: "image-to-video", model: "grok-ve-melting"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-melting/image-to-video - **Monstrosity** by Renderful — Monstrosity video effect. API: `type: "image-to-video", model: "grok-ve-monstrosity"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-monstrosity/image-to-video - **Portal Opening** by Renderful — Portal Opening video effect. API: `type: "image-to-video", model: "grok-ve-portal-opening"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-portal-opening/image-to-video - **Levitation** by Renderful — Levitation video effect. API: `type: "image-to-video", model: "grok-ve-levitation"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-levitation/image-to-video - **Angel Wings** by Renderful — Angel Wings video effect. API: `type: "image-to-video", model: "grok-ve-angel-wings"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-angel-wings/image-to-video - **Saint Glow** by Renderful — Saint Glow video effect. API: `type: "image-to-video", model: "grok-ve-saint-glow"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-saint-glow/image-to-video - **Northern Lights** by Renderful — Northern Lights video effect. API: `type: "image-to-video", model: "grok-ve-northern-lights"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-northern-lights/image-to-video - **Sakura Petals** by Renderful — Sakura Petals video effect. API: `type: "image-to-video", model: "grok-ve-sakura-petals"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/grok-ve-sakura-petals/image-to-video - **Crash Zoom** by Renderful — Crash Zoom video effect. API: `type: "image-to-video", model: "grok-ve-crash-zoom"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/grok-ve-crash-zoom/image-to-video - **3d Rotation** by Renderful — 3d Rotation video effect. API: `type: "image-to-video", model: "grok-ve-3d-rotation"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-3d-rotation/image-to-video - **Speed Lines** by Renderful — Speed Lines video effect. API: `type: "image-to-video", model: "grok-ve-speed-lines"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/grok-ve-speed-lines/image-to-video - **Slow Motion Hit** by Renderful — Slow Motion Hit video effect. API: `type: "image-to-video", model: "grok-ve-slow-motion-hit"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-slow-motion-hit/image-to-video - **Clone Army** by Renderful — Clone Army video effect. API: `type: "image-to-video", model: "grok-ve-clone-army"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-clone-army/image-to-video - **Time Freeze** by Renderful — Time Freeze video effect. API: `type: "image-to-video", model: "grok-ve-time-freeze"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-time-freeze/image-to-video - **Garden Bloom** by Renderful — Garden Bloom video effect. API: `type: "image-to-video", model: "grok-ve-garden-bloom"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-garden-bloom/image-to-video - **Wonderland** by Renderful — Wonderland video effect. API: `type: "image-to-video", model: "grok-ve-wonderland"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-wonderland/image-to-video - **Aquarium** by Renderful — Aquarium video effect. API: `type: "image-to-video", model: "grok-ve-aquarium"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-aquarium/image-to-video - **Nature Bloom** by Renderful — Nature Bloom video effect. API: `type: "image-to-video", model: "grok-ve-nature-bloom"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-nature-bloom/image-to-video - **Money Rain** by Renderful — Money Rain video effect. API: `type: "image-to-video", model: "grok-ve-money-rain"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/grok-ve-money-rain/image-to-video - **Live Concert** by Renderful — Live Concert video effect. API: `type: "image-to-video", model: "grok-ve-live-concert"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-live-concert/image-to-video - **Xray Vision** by Renderful — Xray Vision video effect. API: `type: "image-to-video", model: "grok-ve-xray-vision"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-xray-vision/image-to-video - **Shadow Smoke** by Renderful — Shadow Smoke video effect. API: `type: "image-to-video", model: "grok-ve-shadow-smoke"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-shadow-smoke/image-to-video - **Head Explosion** by Renderful — Head Explosion video effect. API: `type: "image-to-video", model: "grok-ve-head-explosion"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/grok-ve-head-explosion/image-to-video - **Ghost Apparition** by Renderful — Ghost Apparition video effect. API: `type: "image-to-video", model: "grok-ve-ghost-apparition"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-ghost-apparition/image-to-video - **Creepy Doll** by Renderful — Creepy Doll video effect. API: `type: "image-to-video", model: "grok-ve-creepy-doll"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-creepy-doll/image-to-video - **French Kiss** by Renderful — French Kiss video effect. API: `type: "image-to-video", model: "french-kiss"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/french-kiss/image-to-video - **Shake Dance** by Renderful — Shake Dance video effect. API: `type: "image-to-video", model: "shake-dance"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/shake-dance/image-to-video - **Jiggle Up** by Renderful — Jiggle Up video effect. API: `type: "image-to-video", model: "jiggle-up"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/jiggle-up/image-to-video - **Kissing Pro** by Renderful — Kissing Pro video effect. API: `type: "image-to-video", model: "kissing-pro"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/kissing-pro/image-to-video - **Turning Monkey** by Renderful — Turning Monkey video effect. API: `type: "image-to-video", model: "turning-monkey"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/turning-monkey/image-to-video - **Face Punch** by Renderful — Face Punch video effect. API: `type: "image-to-video", model: "face-punch"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/face-punch/image-to-video - **Lens Crack** by Renderful — Lens Crack video effect. API: `type: "image-to-video", model: "lens-crack"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/lens-crack/image-to-video - **Spiders From Mouth** by Renderful — Spiders From Mouth video effect. API: `type: "image-to-video", model: "spiders-from-mouth"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/spiders-from-mouth/image-to-video - **Buddy** by Renderful — Buddy video effect. API: `type: "image-to-video", model: "buddy"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/buddy/image-to-video - **Aquarium** by Renderful — Aquarium video effect. API: `type: "image-to-video", model: "aquarium"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/aquarium/image-to-video - **Balloon** by Renderful — Balloon video effect. API: `type: "image-to-video", model: "balloon"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/balloon/image-to-video - **Turning Metal Melting** by Renderful — Turning Metal Melting video effect. API: `type: "image-to-video", model: "turning-metal-melting"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/turning-metal-melting/image-to-video - **Atomic** by Renderful — Atomic video effect. API: `type: "image-to-video", model: "atomic"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/atomic/image-to-video - **Polygon** by Renderful — Polygon video effect. API: `type: "image-to-video", model: "polygon"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/polygon/image-to-video - **Pizza Fall** by Renderful — Pizza Fall video effect. API: `type: "image-to-video", model: "pizza-fall"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/pizza-fall/image-to-video - **Giant Grab** by Renderful — Giant Grab video effect. API: `type: "image-to-video", model: "giant-grab"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/giant-grab/image-to-video - **Hulk** by Renderful — Hulk video effect. API: `type: "image-to-video", model: "hulk"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/hulk/image-to-video - **Love Drop** by Renderful — Love Drop video effect. API: `type: "image-to-video", model: "love-drop"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/love-drop/image-to-video - **Cheek Kiss** by Renderful — Cheek Kiss video effect. API: `type: "image-to-video", model: "cheek-kiss"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/cheek-kiss/image-to-video - **Pubg Winner Hit** by Renderful — Pubg Winner Hit video effect. API: `type: "image-to-video", model: "pubg-winner-hit"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/pubg-winner-hit/image-to-video - **Child Memory** by Renderful — Child Memory video effect. API: `type: "image-to-video", model: "child-memory"`. Price: $0.48 per request. Docs: https://renderful.ai/models/renderful/child-memory/image-to-video - **Logo Cupertino** by Renderful — Logo Cupertino video effect. API: `type: "image-to-video", model: "grok-ve-logo-cupertino"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-logo-cupertino/image-to-video - **Logo Fluent** by Renderful — Logo Fluent video effect. API: `type: "image-to-video", model: "grok-ve-logo-fluent"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-logo-fluent/image-to-video - **Holographic Couture** by Renderful — Holographic Couture video effect. API: `type: "image-to-video", model: "grok-ve-holographic-couture"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-holographic-couture/image-to-video - **Ink Tattoo Couture** by Renderful — Ink Tattoo Couture video effect. API: `type: "image-to-video", model: "grok-ve-ink-tattoo-couture"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-ink-tattoo-couture/image-to-video - **Zero Gravity Couture** by Renderful — Zero Gravity Couture video effect. API: `type: "image-to-video", model: "grok-ve-zero-gravity-couture"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-zero-gravity-couture/image-to-video - **Crystal Diamond** by Renderful — Crystal Diamond video effect. API: `type: "image-to-video", model: "grok-ve-crystal-diamond"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-crystal-diamond/image-to-video - **Phoenix Feather** by Renderful — Phoenix Feather video effect. API: `type: "image-to-video", model: "grok-ve-phoenix-feather"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-phoenix-feather/image-to-video - **Liquid Chrome Dress** by Renderful — Liquid Chrome Dress video effect. API: `type: "image-to-video", model: "grok-ve-liquid-chrome-dress"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-liquid-chrome-dress/image-to-video - **Neon Cyber Couture** by Renderful — Neon Cyber Couture video effect. API: `type: "image-to-video", model: "grok-ve-neon-cyber-couture"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-neon-cyber-couture/image-to-video - **Saint Ascension** by Renderful — Saint Ascension video effect. API: `type: "image-to-video", model: "grok-ve-saint-ascension"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-saint-ascension/image-to-video - **Digital Glitch** by Renderful — Digital Glitch video effect. API: `type: "image-to-video", model: "grok-ve-digital-glitch"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-digital-glitch/image-to-video - **Chrome Cyborg** by Renderful — Chrome Cyborg video effect. API: `type: "image-to-video", model: "grok-ve-chrome-cyborg"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-chrome-cyborg/image-to-video - **Tree Guardian** by Renderful — Tree Guardian video effect. API: `type: "image-to-video", model: "grok-ve-tree-guardian"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-tree-guardian/image-to-video - **Galaxy Being** by Renderful — Galaxy Being video effect. API: `type: "image-to-video", model: "grok-ve-galaxy-being"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-galaxy-being/image-to-video - **Flower Bloom** by Renderful — Flower Bloom video effect. API: `type: "image-to-video", model: "grok-ve-flower-bloom"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-flower-bloom/image-to-video - **Outfit Transform** by Renderful — Outfit Transform video effect. API: `type: "image-to-video", model: "grok-ve-outfit-transform"`. Price: $0.8 per request. Docs: https://renderful.ai/models/renderful/grok-ve-outfit-transform/image-to-video ### Text to Image (23) - **Seedream 4.5** by ByteDance — ByteDance's flagship text-to-image model with exceptional photorealism. API: `type: "text-to-image", model: "seedream-4.5"`. Price: $0.04 per request. Docs: https://renderful.ai/models/bytedance/seedream-4.5/text-to-image - **Seedream 5.0 Lite** by ByteDance — Latest Seedream with 2K/3K resolution and PNG output support. API: `type: "text-to-image", model: "seedream-5.0-lite"`. Price: $0.035 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-lite/text-to-image - **Seedream 5.0 Pro** by ByteDance — Top-tier Seedream with 1K/2K tiers and multi-reference support. API: `type: "text-to-image", model: "seedream-5.0-pro"`. Price: $0.045 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-pro/text-to-image - **Seedream 4.0** by ByteDance — High-performance image generation with excellent quality. API: `type: "text-to-image", model: "seedream-4"`. Price: $0.036 per request. Docs: https://renderful.ai/models/bytedance/seedream-4/text-to-image - **Flux Dev** by Black Forest Labs — High-quality image generation with excellent prompt following. API: `type: "text-to-image", model: "flux-dev"`. Price: $0.025 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-dev/text-to-image - **Flux Schnell** by Black Forest Labs — Ultra-fast image generation for rapid prototyping. API: `type: "text-to-image", model: "flux-schnell"`. Price: $0.003 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-schnell/text-to-image - **Z-Image** by Alibaba — Fast and affordable text-to-image generation. API: `type: "text-to-image", model: "z-image"`. Price: $0.005 per request. Docs: https://renderful.ai/models/alibaba/z-image/text-to-image - **GPT Image** by OpenAI — OpenAI's flagship image generation model. API: `type: "text-to-image", model: "gpt-image"`. Price: $0.055 per request. Docs: https://renderful.ai/models/openai/gpt-image/text-to-image - **GPT Image 1.5** by OpenAI — OpenAI's latest image model with enhanced capabilities. API: `type: "text-to-image", model: "gpt-image-1.5"`. Price: $0.26 per request. Docs: https://renderful.ai/models/openai/gpt-image-1.5/text-to-image - **GPT Image 2** by OpenAI — OpenAI's latest image model with near-perfect text rendering. API: `type: "text-to-image", model: "gpt-image-2"`. Price: $0.03 per request. Docs: https://renderful.ai/models/kie/gpt-image-2/text-to-image - **Grok Imagine Image** by xAI — xAI's creative and versatile image generation model. API: `type: "text-to-image", model: "grok-imagine-image"`. Price: $0.035 per request. Docs: https://renderful.ai/models/xai/grok-imagine-image/text-to-image - **Nano Banana Pro** by Google — Strongest prompt-following model with exceptional detail. API: `type: "text-to-image", model: "nano-banana-pro"`. Price: $0.135 per request. Docs: https://renderful.ai/models/google/nano-banana-pro/text-to-image - **Nano Banana 2** by Google — Pro quality at Flash speed with 4K and PNG support. API: `type: "text-to-image", model: "nano-banana-2"`. Price: $0.05 per request. Docs: https://renderful.ai/models/google/nano-banana-2/text-to-image - **Qwen Image** by Alibaba — Great at complex text rendering in images. API: `type: "text-to-image", model: "qwen-image"`. Price: $0.035 per request. Docs: https://renderful.ai/models/alibaba/qwen-image/text-to-image - **WAN 2.2** by Alibaba — Fast and creative image generation. API: `type: "text-to-image", model: "wan-2.2"`. Price: $0.025 per request. Docs: https://renderful.ai/models/alibaba/wan-2.2/text-to-image - **WAN 2.5** by Alibaba — Photorealism and creative control for image generation. API: `type: "text-to-image", model: "wan-2.5-image"`. Price: $0.045 per request. Docs: https://renderful.ai/models/alibaba/wan-2.5-image/text-to-image - **Flux Dev Lora** by Black Forest Labs — General art and design with LoRA support. API: `type: "text-to-image", model: "flux-dev-lora"`. Price: $0.035 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-dev-lora/text-to-image - **Flux Kontext Pro** by Black Forest Labs — Consistent, in-context image generation. API: `type: "text-to-image", model: "flux-kontext-pro"`. Price: $0.04 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-kontext-pro/text-to-image - **Flux Kontext Max** by Black Forest Labs — Maximum context for detailed scenes. API: `type: "text-to-image", model: "flux-kontext-max"`. Price: $0.08 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-kontext-max/text-to-image - **Flux 2** by Black Forest Labs — Next-gen Flux with improved quality. API: `type: "text-to-image", model: "flux-2"`. Price: $0.04 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2/text-to-image - **Flux 2 Pro** by Black Forest Labs — Premium Flux 2 with highest quality. API: `type: "text-to-image", model: "flux-2-pro"`. Price: $0.054 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2-pro/text-to-image - **Flux 2 Flex** by Black Forest Labs — Flexible generation at lower cost. API: `type: "text-to-image", model: "flux-2-flex"`. Price: $0.077 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2-flex/text-to-image - **Seedream 5.0 Lite Edit Sequential** by ByteDance — Batch text-to-image with 2K/3K and PNG support. API: `type: "text-to-image", model: "seedream-5.0-lite-edit-sequential-t2i"`. Price: $0.035 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-lite-edit-sequential/text-to-image ### Image to Image (22) - **GPT Image** by OpenAI — OpenAI's image transformation model. API: `type: "image-to-image", model: "gpt-image-i2i"`. Price: $0.055 per request. Docs: https://renderful.ai/models/openai/gpt-image-i2i/image-to-image - **GPT Image 1.5** by OpenAI — OpenAI's latest image editing model. API: `type: "image-to-image", model: "gpt-image-1.5-i2i"`. Price: $0.26 per request. Docs: https://renderful.ai/models/openai/gpt-image-1.5-i2i/image-to-image - **GPT Image 1 Mini** by OpenAI — OpenAI's budget-friendly image editing model. API: `type: "image-to-image", model: "gpt-image-1-mini-i2i"`. Price: $0.01 per request. Docs: https://renderful.ai/models/openai/gpt-image-1-mini/image-to-image - **GPT Image 2** by OpenAI — OpenAI's latest image editing model with multi-image support. API: `type: "image-to-image", model: "gpt-image-2-i2i"`. Price: $0.03 per request. Docs: https://renderful.ai/models/kie/gpt-image-2-i2i/image-to-image - **Grok Imagine Image** by xAI — xAI's creative image editing model. API: `type: "image-to-image", model: "grok-imagine-image-i2i"`. Price: $0.045 per request. Docs: https://renderful.ai/models/xai/grok-imagine-image-i2i/image-to-image - **Nano Banana Pro** by Google — Image transformation with strongest prompt following. API: `type: "image-to-image", model: "nano-banana-pro-i2i"`. Price: $0.135 per request. Docs: https://renderful.ai/models/google/nano-banana-pro-i2i/image-to-image - **Nano Banana 2** by Google — Image transformation at Flash speed with multi-reference support. API: `type: "image-to-image", model: "nano-banana-2-i2i"`. Price: $0.05 per request. Docs: https://renderful.ai/models/google/nano-banana-2-i2i/image-to-image - **Qwen Image** by Alibaba — Image transformation with text rendering capability. API: `type: "image-to-image", model: "qwen-image-i2i"`. Price: $0.045 per request. Docs: https://renderful.ai/models/alibaba/qwen-image-i2i/image-to-image - **WAN 2.5** by Alibaba — Photorealistic image transformation. API: `type: "image-to-image", model: "wan-2.5-i2i"`. Price: $0.045 per request. Docs: https://renderful.ai/models/alibaba/wan-2.5-i2i/image-to-image - **Flux Kontext Pro** by Black Forest Labs — Context-aware image transformation. API: `type: "image-to-image", model: "flux-kontext-pro-i2i"`. Price: $0.04 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-kontext-pro-i2i/image-to-image - **Flux Kontext Max** by Black Forest Labs — Maximum context for complex image edits. API: `type: "image-to-image", model: "flux-kontext-max-i2i"`. Price: $0.08 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-kontext-max-i2i/image-to-image - **Flux 2** by Black Forest Labs — Next-gen image transformation. API: `type: "image-to-image", model: "flux-2-i2i"`. Price: $0.04 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2-i2i/image-to-image - **Flux 2 Pro** by Black Forest Labs — Premium image transformation. API: `type: "image-to-image", model: "flux-2-pro-i2i"`. Price: $0.054 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2-pro-i2i/image-to-image - **Flux 2 Flex** by Black Forest Labs — Flexible image transformation. API: `type: "image-to-image", model: "flux-2-flex-i2i"`. Price: $0.077 per request. Docs: https://renderful.ai/models/black-forest-labs/flux-2-flex-i2i/image-to-image - **Seedream 4.0** by ByteDance — Image transformation with cohesive styles. API: `type: "image-to-image", model: "seedream-4-i2i"`. Price: $0.036 per request. Docs: https://renderful.ai/models/bytedance/seedream-4-i2i/image-to-image - **Seedream 4.5** by ByteDance — Image transformation with enhanced quality. API: `type: "image-to-image", model: "seedream-4.5-i2i"`. Price: $0.04 per request. Docs: https://renderful.ai/models/bytedance/seedream-4.5-i2i/image-to-image - **Seedream 5.0 Lite** by ByteDance — Image transformation with 2K/3K and multi-reference input. API: `type: "image-to-image", model: "seedream-5.0-lite-i2i"`. Price: $0.035 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-lite-i2i/image-to-image - **Seedream 5.0 Pro** by ByteDance — Premium image-to-image with single or multi-reference (2-10) input. API: `type: "image-to-image", model: "seedream-5.0-pro-i2i"`. Price: $0.045 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-pro-i2i/image-to-image - **SeedEdit 3.0** by ByteDance — Advanced image editing with precise control. API: `type: "image-to-image", model: "seededit-3.0-i2i"`. Price: $0.03 per request. Docs: https://renderful.ai/models/bytedance/seededit-3.0/image-to-image - **Seedream 4.0 Edit Sequential** by ByteDance — Batch edit multiple images with consistent style. API: `type: "image-to-image", model: "seedream-4-edit-sequential"`. Price: $0.027 per request. Docs: https://renderful.ai/models/bytedance/seedream-4-edit-sequential/image-to-image - **Seedream 4.5 Edit Sequential** by ByteDance — Premium batch editing with enhanced quality. API: `type: "image-to-image", model: "seedream-4.5-edit-sequential"`. Price: $0.04 per request. Docs: https://renderful.ai/models/bytedance/seedream-4.5-edit-sequential/image-to-image - **Seedream 5.0 Lite Edit Sequential** by ByteDance — Batch image generation with 2K/3K and PNG support. API: `type: "image-to-image", model: "seedream-5.0-lite-edit-sequential"`. Price: $0.035 per request. Docs: https://renderful.ai/models/bytedance/seedream-5.0-lite-edit-sequential-i2i/image-to-image ### Reference to Video (6) - **WAN 2.7 Reference-to-Video** by Alibaba — Character-consistent video from reference images/videos. API: `type: "reference-to-video", model: "wan-2.7-r2v"`. Price: $0.5 per request. Docs: https://renderful.ai/models/alibaba/wan-2.7-r2v/reference-to-video - **WAN 3.0 Reference-to-Video** by Alibaba — Multimodal reference video generation, up to 30s. API: `type: "reference-to-video", model: "wan-3.0-r2v"`. Price: $0.55 per request. Docs: https://renderful.ai/models/alibaba/wan-3.0-r2v/reference-to-video - **Hailuo 03 (MiniMax H3)** by MiniMax — Multi-reference video from images, clips, and audio. API: `type: "reference-to-video", model: "hailuo-03-r2v"`. Price: $0.6 per request. Docs: https://renderful.ai/models/minimax/hailuo-03-r2v/reference-to-video - **Kling Video O1** by Kling — Generate videos from character/scene reference images. API: `type: "reference-to-video", model: "kling-video-o1-reference-to-video"`. Price: $0.56 per request. Docs: https://renderful.ai/models/kling/kling-video-o1-reference-to-video/reference-to-video - **Kling Video O1 Standard** by Kling — Cost-effective reference-to-video generation. API: `type: "reference-to-video", model: "kling-video-o1-std-reference-to-video"`. Price: $0.59 per request. Docs: https://renderful.ai/models/kling/kling-video-o1-std-reference-to-video/reference-to-video - **WAN 2.6 Reference-to-Video** by Alibaba — Transform video references into new video shots. API: `type: "reference-to-video", model: "wan-2.6-reference-to-video"`. Price: $1 per request. Docs: https://renderful.ai/models/alibaba/wan-2.6-reference-to-video/reference-to-video ### Video to Video (27) - **WAN 2.7 Video Edit** by Alibaba — AI video editing with text instructions. API: `type: "video-to-video", model: "wan-2.7-videoedit"`. Price: $1.35 per request. Docs: https://renderful.ai/models/alibaba/wan-2.7-videoedit/video-to-video - **Seedance 2.5 Video Edit** by ByteDance — Edit videos with text prompts — replace, add, remove, restyle. API: `type: "video-to-video", model: "seedance-2.5-video-edit"`. Price: $1.9 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.5-video-edit/video-edit - **Seedance 2.5 Video Extend** by ByteDance — Extend videos or stitch clips into coherent sequences. API: `type: "video-to-video", model: "seedance-2.5-video-extend"`. Price: $3.8 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.5-video-extend/video-extend - **Seedance 2.0 Video Edit** by ByteDance — Edit videos with text prompts — replace, add, remove, restyle. API: `type: "video-to-video", model: "seedance-2.0-video-edit"`. Price: $1.25 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-video-edit/video-edit - **Seedance 2.0 Video Extend** by ByteDance — Extend videos or stitch clips into coherent sequences. API: `type: "video-to-video", model: "seedance-2.0-video-extend"`. Price: $2.5 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-video-extend/video-extend - **Seedance 2.0 Mini Video Edit** by ByteDance — Lower-cost video editing with Seedance 2.0 Mini. API: `type: "video-to-video", model: "seedance-2.0-mini-video-edit"`. Price: $0.5 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-mini-video-edit/video-edit - **Seedance 2.0 Mini Video Extend** by ByteDance — Lower-cost video extension with Seedance 2.0 Mini. API: `type: "video-to-video", model: "seedance-2.0-mini-video-extend"`. Price: $0.5 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-mini-video-extend/video-extend - **Seedance 2.0 Fast Video Edit** by ByteDance — Fast video editing with text prompts at lower cost. API: `type: "video-to-video", model: "seedance-2.0-fast-video-edit"`. Price: $1 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-fast-video-edit/video-edit - **Seedance 2.0 Fast Video Extend** by ByteDance — Fast video extension and clip stitching at lower cost. API: `type: "video-to-video", model: "seedance-2.0-fast-video-extend"`. Price: $2 per request. Docs: https://renderful.ai/models/bytedance/seedance-2.0-fast-video-extend/video-extend - **Kling Lipsync** by Kling — Add lip-synced speech to any video. API: `type: "video-to-video", model: "kling-lipsync"`. Price: $0.15 per request. Docs: https://renderful.ai/models/kling/kling-lipsync/video-to-video - **WAN 2.5 Video Extend** by Alibaba — Extend videos with AI-generated continuation. API: `type: "video-to-video", model: "wan-2.5-video-extend"`. Price: $0.25 per request. Docs: https://renderful.ai/models/alibaba/wan-2.5-video-extend/video-to-video - **ByteDance Video Upscaler** by ByteDance — AI super-resolution video upscaling to 4K. API: `type: "video-to-video", model: "bytedance-video-upscaler"`. Price: $0.0363 per request. Docs: https://renderful.ai/models/bytedance/bytedance-video-upscaler/video-to-video - **Seedance 1.5 Pro Video Extend** by ByteDance — Extend videos with natural motion and stable aesthetics. API: `type: "video-to-video", model: "seedance-1.5-pro-video-extend"`. Price: $0.26 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.5-pro-video-extend/video-to-video - **Seedance 1.5 Pro Video Extend Fast** by ByteDance — Extend videos with natural motion continuation. API: `type: "video-to-video", model: "seedance-1.5-pro-video-extend-fast"`. Price: $0.4 per request. Docs: https://renderful.ai/models/bytedance/seedance-1.5-pro-video-extend-fast/video-to-video - **Grok Imagine Video Edit** by xAI — xAI's prompt-driven video editing model. API: `type: "video-to-video", model: "grok-imagine-video-edit"`. Price: $0.3625 per request. Docs: https://renderful.ai/models/xai/grok-imagine-video-edit/video-to-video - **Runway Gen4 Aleph** by Runway — Transform videos with natural language editing. API: `type: "video-to-video", model: "gen4-aleph"`. Price: $0.9 per request. Docs: https://renderful.ai/models/runway/gen4-aleph/video-to-video - **Runway Upscale V1** by Runway — 4X AI video upscaling with enhanced details. API: `type: "video-to-video", model: "upscale-v1"`. Price: $0.1 per request. Docs: https://renderful.ai/models/runway/upscale-v1/video-to-video - **ElevenLabs Dubbing** by ElevenLabs — AI-powered video/audio dubbing to translate content into 29+ languages. API: `type: "video-to-video", model: "elevenlabs-dubbing"`. Price: $0.5 per request. Docs: https://renderful.ai/models/elevenlabs/elevenlabs-dubbing/video-to-video - **WAN 2.2 Animate** by Alibaba — Animate characters or replace them in videos using motion transfer. API: `type: "video-to-video", model: "wan-2.2-animate"`. Price: $1.3 per request. Docs: https://renderful.ai/models/alibaba/wan-2.2-animate/video-to-video - **Kling 2.6 Pro Motion Control** by Kling — Transfer motion from reference videos to character images. API: `type: "video-to-video", model: "kling-v2-6-motion-control"`. Price: $0.35 per request. Docs: https://renderful.ai/models/kling/kling-v2-6-motion-control/video-to-video - **Kling O1 Video Edit** by Kling — Edit videos with natural language instructions. API: `type: "video-to-video", model: "kling-o1-video-edit"`. Price: $0.84 per request. Docs: https://renderful.ai/models/kling/kling-o1-video-edit/video-to-video - **Lucy Edit Dev** by Lucy Edit AI — Fast AI video editing with text prompts. API: `type: "video-to-video", model: "lucy-edit"`. Price: $0.1835 per request. Docs: https://renderful.ai/models/lucy-edit-ai/lucy-edit/video-to-video - **Lucy Edit Pro** by Lucy Edit AI — Professional AI video editing with resolution control. API: `type: "video-to-video", model: "lucy-edit-pro"`. Price: $0.918 per request. Docs: https://renderful.ai/models/lucy-edit-ai/lucy-edit-pro/video-to-video - **Lucy Restyle** by Lucy Edit AI — AI video style transfer with motion preservation. API: `type: "video-to-video", model: "lucy-restyle"`. Price: $0.0535 per request. Docs: https://renderful.ai/models/lucy-edit-ai/lucy-restyle/video-to-video - **HappyHorse Video Edit** by Alibaba — Natural language video editing with reference images. API: `type: "video-to-video", model: "happyhorse-1.0-video-edit"`. Price: $0.7 per request. Docs: https://renderful.ai/models/alibaba/happyhorse-1.0-video-edit/video-to-video - **HappyHorse Video Extend** by Alibaba — Extend videos with seamless AI-generated continuation. API: `type: "video-to-video", model: "happyhorse-1.0-video-extend"`. Price: $0.7 per request. Docs: https://renderful.ai/models/alibaba/happyhorse-1.0-video-extend/video-extend - **PixVerse V6 Extend** by PixVerse — Extend videos with AI-generated continuation. API: `type: "video-to-video", model: "pixverse-v6-extend"`. Price: $0.225 per request. Docs: https://renderful.ai/models/pixverse/pixverse-v6-extend/video-extend ### Text to 3D (1) - **Hunyuan3D v3** by Tencent — Generate detailed 3D models from text descriptions with texture support. API: `type: "text-to-3d", model: "hunyuan3d-v3"`. Price: $0.375 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v3/text-to-3d ### Image to 3D (5) - **Hunyuan3D v3 Image** by Tencent — Convert images to detailed 3D models with optional multi-view enhancement. API: `type: "image-to-3d", model: "hunyuan3d-v3-i2-3d"`. Price: $0.375 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v3-image/image-to-3d - **Hunyuan3D v2.1** by Tencent — Single image to 3D with PBR materials and high-fidelity textures. API: `type: "image-to-3d", model: "hunyuan3d-v2.1"`. Price: $0.3 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v2-1/image-to-3d - **Hunyuan3D v2 Base** by Tencent — High-fidelity 3D from single image with 4K textures. API: `type: "image-to-3d", model: "hunyuan3d-v2-base"`. Price: $0.16 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v2-base/image-to-3d - **Hunyuan3D v2 Mini** by Tencent — Fastest and most affordable image-to-3D model. API: `type: "image-to-3d", model: "hunyuan3d-v2-mini"`. Price: $0.1 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v2-mini/image-to-3d - **Hunyuan3D v2 Multi-View** by Tencent — Best accuracy from 3 reference images. API: `type: "image-to-3d", model: "hunyuan3d-v2-multi-view"`. Price: $0.03 per request. Docs: https://renderful.ai/models/tencent/hunyuan3d-v2-multi-view/image-to-3d ### Text to Music (2) - **Music 2.0** by MiniMax — AI music generation from text prompts and lyrics. API: `type: "text-to-music", model: "music-2.0"`. Price: $0.1 per request. Docs: https://renderful.ai/models/minimax/music-2.0/text-to-music - **Music 2.5** by MiniMax — Next-gen AI music generation with high-fidelity audio. API: `type: "text-to-music", model: "music-2.5"`. Price: $0.15 per request. Docs: https://renderful.ai/models/minimax/music-2.5/text-to-music ### Text to Speech (10) - **Speech 2.6 HD** by MiniMax — Latest HD TTS with outstanding prosody. API: `type: "text-to-audio", model: "speech-2.6-hd"`. Price: $0.1 per request. Docs: https://renderful.ai/models/minimax/speech-2.6-hd/text-to-audio - **Speech 2.6 Turbo** by MiniMax — Fast TTS with 40 language support. API: `type: "text-to-audio", model: "speech-2.6-turbo"`. Price: $0.06 per request. Docs: https://renderful.ai/models/minimax/speech-2.6-turbo/text-to-audio - **Speech 02 HD** by MiniMax — Superior rhythm and voice quality. API: `type: "text-to-audio", model: "speech-02-hd"`. Price: $0.1 per request. Docs: https://renderful.ai/models/minimax/speech-02-hd/text-to-audio - **Speech 02 Turbo** by MiniMax — Fast TTS with enhanced multilingual. API: `type: "text-to-audio", model: "speech-02-turbo"`. Price: $0.06 per request. Docs: https://renderful.ai/models/minimax/speech-02-turbo/text-to-audio - **Eleven V3** by ElevenLabs — Most expressive TTS model with dramatic delivery. API: `type: "text-to-audio", model: "eleven_v3"`. Price: $0.1 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-v3/text-to-audio - **Eleven Multilingual V2** by ElevenLabs — Most stable TTS model for professional content. API: `type: "text-to-audio", model: "eleven_multilingual_v2"`. Price: $0.1 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-multilingual-v2/text-to-audio - **Eleven Flash V2.5** by ElevenLabs — Fastest TTS model with ultra-low latency. API: `type: "text-to-audio", model: "eleven_flash_v2_5"`. Price: $0.05 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-flash-v2-5/text-to-audio - **Eleven Turbo V2.5** by ElevenLabs — Balanced TTS model with quality and speed. API: `type: "text-to-audio", model: "eleven_turbo_v2_5"`. Price: $0.05 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-turbo-v2-5/text-to-audio - **Eleven Flash V2** by ElevenLabs — Ultra-fast English-only TTS model. API: `type: "text-to-audio", model: "eleven_flash_v2"`. Price: $0.05 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-flash-v2/text-to-audio - **Eleven Turbo V2** by ElevenLabs — High-quality English TTS with low latency. API: `type: "text-to-audio", model: "eleven_turbo_v2"`. Price: $0.05 per request. Docs: https://renderful.ai/models/elevenlabs/eleven-turbo-v2/text-to-audio ### Audio to Audio (1) - **ElevenLabs Voice Changer** by ElevenLabs — Transform voice recordings into different voices. API: `type: "audio-to-audio", model: "elevenlabs-voice-changer"`. Price: $0.12 per request. Docs: https://renderful.ai/models/elevenlabs/elevenlabs-voice-changer/audio-to-audio ### Speech to Text (3) - **OpenAI Whisper** by OpenAI — Fast, accurate multilingual speech-to-text. API: `type: "speech-to-text", model: "openai-whisper"`. Price: $0.006 per request. Docs: https://renderful.ai/models/openai/openai-whisper/speech-to-text - **OpenAI Whisper with Video** by OpenAI — Transcribe video audio with timestamps. API: `type: "speech-to-text", model: "openai-whisper-with-video"`. Price: $0.006 per request. Docs: https://renderful.ai/models/openai/openai-whisper-with-video/speech-to-text - **OpenAI Whisper Turbo** by OpenAI — Fastest Whisper model with great accuracy. API: `type: "speech-to-text", model: "openai-whisper-turbo"`. Price: $0.006 per request. Docs: https://renderful.ai/models/openai/openai-whisper-turbo/speech-to-text ## 9) Common use cases - AI video generation for ads, social clips, product demos, and storytelling. - Image generation and editing for marketing creative, thumbnails, and concept art. - Animating still images into video (image-to-video). - Video upscaling and enhancement. - Voiceover, dubbing, music, and speech-to-text pipelines. - 3D asset generation for games, commerce, and AR/XR. - Autonomous AI agents that generate media and pay per call via x402. ## 10) How Renderful compares Renderful is most often compared to fal.ai, Replicate, WaveSpeed AI, PiAPI, and kie.ai. Like those platforms, Renderful is a multi-model API aggregator with pay-per-use pricing. Renderful focuses on a single consistent schema across image, video, audio, 3D, and LLM generation, fast addition of new models, transparent per-request pricing with a free tier, and first-class support for autonomous agents (OpenAPI spec, agents.json, x402 payments). - Renderful vs fal.ai: https://renderful.ai/blog/renderful-vs-fal-ai - Renderful vs Replicate: https://renderful.ai/blog/renderful-vs-replicate - Renderful vs WaveSpeed: https://renderful.ai/blog/renderful-vs-wavespeed - Renderful vs kie.ai: https://renderful.ai/blog/renderful-vs-kie-ai - AI API pricing comparison: https://renderful.ai/blog/ai-api-pricing-comparison - Best AI API platforms: https://renderful.ai/blog/best-ai-api-platforms ## 11) Discoverability URLs - https://api.renderful.ai/.well-known/agents.json - https://api.renderful.ai/.well-known/ai-plugin.json - https://api.renderful.ai/llms.txt - https://api.renderful.ai/llms-full.txt - https://api.renderful.ai/api/v1/openapi.json ## 12) Compatibility & deprecations Deprecated aliases (temporary, return `Deprecation` and `Sunset` headers): - `GET /api/v1/predictions/{taskId}/result` -> `GET /api/v1/generations/{id}` - `/v1/*` -> `/api/v1/*` ## 13) OpenAPI Source of truth for tools and SDKs: https://api.renderful.ai/api/v1/openapi.json ## Contact Support: hello@renderful.ai