Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions ar/guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

{
"model": "wan-2.5-preview-text-to-video",
"queue_id": "123e4567-e89b-12d3-a456-426614174000"

Check warning on line 99 in ar/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/guides/media/video-generation.mdx#L99

Did you really mean 'queue_id'?
}
```

Expand Down Expand Up @@ -179,18 +179,18 @@
})
data = resp.json()
model, queue_id = data["model"], data["queue_id"]
download_url = data.get("download_url")

Check warning on line 182 in ar/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/guides/media/video-generation.mdx#L182

Did you really mean 'download_url'?

# Poll
while True:
resp = requests.post(f"{BASE_URL}/video/retrieve", headers=HEADERS,
json={"model": model, "queue_id": queue_id})
if "video/mp4" in resp.headers.get("Content-Type", ""):
with open("output.mp4", "wb") as f:

Check warning on line 189 in ar/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/guides/media/video-generation.mdx#L189

Did you really mean 'wb'?
f.write(resp.content)
break
if resp.json().get("status") == "COMPLETED" and download_url:

Check warning on line 192 in ar/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/guides/media/video-generation.mdx#L192

Did you really mean 'download_url'?
with open("output.mp4", "wb") as f:

Check warning on line 193 in ar/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/guides/media/video-generation.mdx#L193

Did you really mean 'wb'?
f.write(requests.get(download_url).content)
break
time.sleep(5)
Expand Down Expand Up @@ -339,6 +339,20 @@

عرض السعر بالدولار الأمريكي.

<Info>
**معاملات عرض السعر هي مدخلات تسعير فقط.** الحقول التي ترسلها إلى `/video/quote` — بما في ذلك `aspect_ratio` و`audio` و`reference_video_total_duration` — تُستخدم بحتًا لحساب السعر. **لا** تُمرَّر إلى `/video/queue` ولا تؤثر في الفيديو المولَّد. يُقبل إرسال `aspect_ratio` إلى quote حتى بالنسبة للنماذج (مثل `seedance-2-0-image-to-video`) التي ترفض `aspect_ratio` وقت التوليد، لأن نماذج الصورة إلى فيديو تشتق نسبة العرض إلى الارتفاع للإخراج من صورة الإدخال.
</Info>

### تسعير المرجع إلى فيديو

بالنسبة لنماذج R2V (مثل Seedance 2.0 R2V)، مرّر `reference_video_total_duration` — وهي المدة الإجمالية بالثواني لجميع المقاطع المرجعية التي تعتزم تضمينها — كي يعكس عرض السعر فئة سعر "إدخال مع فيديو" وصيغة الرموز `(الإدخال + الإخراج) × البكسلات`. إن أغفلته، فإن عرض السعر يعيد الحد الأساسي بلا مرجع بدلًا من ذلك.

`reference_video_total_duration` مُعترف به فقط بواسطة `/video/quote`. ليس له أي تأثير على `/video/queue`، وإغفاله لن يتسبب في خطأ توليد.

### عرض أسعار ثابتة

عروض الأسعار لحظية وقد تتغير الأسعار. إن أردت عرض سعر ثابت في تطبيقك، فاستدعِ `/video/quote` مرة واحدة لكل مجموعة من المعاملات التي تدعمها واحفظ النتيجة في مخزنك الخاص — ثم أعد طلب عرض السعر وفق جدول زمني (أو عند تحديثات قائمة الأسعار) لتحديث القيمة المخزنة. لا توجد نقطة نهاية لعرض سعر "مقفل" أو "ثابت".

---

## الأخطاء
Expand Down
6 changes: 6 additions & 0 deletions ar/overview/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

الأسعار لكل مليون رمز (token) ما لم يُذكر خلاف ذلك. جميع الأسعار بالدولار الأمريكي. 1 Diem = 1$ يوميًا من الحوسبة.

<Info>
**خطط الـ API مقابل خطط المستهلك.** تُحاسَب Venice API **حسب الاستخدام** بأرصدة بالدولار الأمريكي (أو عبر DIEM المرهون). وهي منفصلة عن خطط الاشتراك الشهرية لتطبيق Venice للمستهلك على الويب (Free وPro وMax)، والتي تنطبق مخصصاتها — مثل عدد الصور أو الدردشة غير المحدودة — على تطبيقات الويب/سطح المكتب/الجوال فقط، **وليس** على استخدام الـ API. تُحتسب جميع استدعاءات الـ API من رصيد اعتمادات الـ API الخاص بك بصرف النظر عن خطتك كمستهلك. راجع [مستخدمو Pro](#مستخدمو-pro) أدناه للاطلاع على الرصيد لمرة واحدة الذي يحصل عليه مشتركو Pro.
</Info>

## نماذج النص

### Chat Completions
Expand All @@ -15,25 +19,25 @@

| النموذج | المعرّف | سعر الإدخال | سعر الإخراج | قراءة الذاكرة المؤقتة | كتابة الذاكرة المؤقتة | السياق | الخصوصية |
|---|---|---|---|---|---|---|---|
| Aion 3.0 | `aion-labs-aion-3-0` | $3.75 | $7.50 | $0.94 | - | 128K | Anonymized |

Check warning on line 22 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L22

Did you really mean 'Aion'?

Check warning on line 22 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L22

Did you really mean 'Anonymized'?
| Aion 3.0 Mini | `aion-labs-aion-3-0-mini` | $0.88 | $1.75 | $0.23 | - | 128K | Anonymized |

Check warning on line 23 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L23

Did you really mean 'Aion'?

Check warning on line 23 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L23

Did you really mean 'Anonymized'?
| Claude Fable 5 | `claude-fable-5` | $12.00 | $60.00 | $1.20 | $15.00 | 1000K | Anonymized |

Check warning on line 24 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L24

Did you really mean 'Anonymized'?
| Claude Opus 4.5 | `claude-opus-4-5` | $6.00 | $30.00 | $0.60 | $7.50 | 198K | Anonymized |

Check warning on line 25 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L25

Did you really mean 'Anonymized'?
| Claude Opus 4.6 (Beta) | `claude-opus-4-6` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 26 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L26

Did you really mean 'Anonymized'?
| Claude Opus 4.7 | `claude-opus-4-7` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 27 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L27

Did you really mean 'Anonymized'?
| Claude Opus 4.8 | `claude-opus-4-8` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 28 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L28

Did you really mean 'Anonymized'?
| Claude Opus 4.8 Fast (Beta) | `claude-opus-4-8-fast` | $12.00 | $60.00 | $1.20 | $15.00 | 1000K | Anonymized |

Check warning on line 29 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L29

Did you really mean 'Anonymized'?
| Claude Sonnet 4.5 | `claude-sonnet-4-5` | $3.75 | $18.75 | $0.38 | $4.69 | 198K | Anonymized |

Check warning on line 30 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L30

Did you really mean 'Anonymized'?
| Claude Sonnet 4.6 (Beta) | `claude-sonnet-4-6` | $3.60 | $18.00 | $0.36 | $4.50 | 1000K | Anonymized |

Check warning on line 31 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L31

Did you really mean 'Anonymized'?
| Claude Sonnet 5 (Beta) | `claude-sonnet-5` | $3.00 | $15.00 | $0.30 | $3.75 | 1000K | Anonymized |

Check warning on line 32 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L32

Did you really mean 'Anonymized'?
| DeepSeek V3.2 | `deepseek-v3.2` | $0.33 | $0.48 | $0.16 | - | 160K | Private |
| DeepSeek V4 Flash | `deepseek-v4-flash` | $0.14 | $0.28 | $0.03 | - | 1000K | Anonymized |

Check warning on line 34 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L34

Did you really mean 'Anonymized'?
| DeepSeek V4 Flash (Beta) | `e2ee-deepseek-v4-flash` | $0.18 | $0.37 | $0.04 | - | 1000K | E2EE · Private |
| DeepSeek V4 Pro | `deepseek-v4-pro` | $1.65 | $3.30 | $0.33 | - | 1000K | Anonymized |

Check warning on line 36 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L36

Did you really mean 'Anonymized'?
| Gemini 3 Flash Preview | `gemini-3-flash-preview` | $0.70 | $3.75 | $0.07 | - | 256K | Anonymized |

Check warning on line 37 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L37

Did you really mean 'Anonymized'?
| Gemini 3.1 Pro Preview | `gemini-3-1-pro-preview` | $2.50 | $15.00 | $0.50 | $0.50 | 1000K | Anonymized |

Check warning on line 38 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L38

Did you really mean 'Anonymized'?
| ↳ سياق >200K | | $5.00 | $22.50 | $0.50 | $0.50 | | |
| Gemini 3.5 Flash | `gemini-3-5-flash` | $1.55 | $9.45 | $0.15 | $0.09 | 1000K | Anonymized |

Check warning on line 40 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L40

Did you really mean 'Anonymized'?
| Gemma 3 27B (Beta) | `e2ee-gemma-3-27b-p` | $0.14 | $0.50 | - | - | 40K | E2EE · Private |
| Gemma 4 26B A4B Uncensored (Beta) | `e2ee-gemma-4-26b-a4b-uncensored-p` | $0.19 | $0.88 | - | - | 64K | E2EE · Private |
| Gemma 4 31B Instruct (Beta) | `e2ee-gemma-4-31b` | $0.14 | $0.43 | $0.03 | - | 32K | E2EE · Private |
Expand All @@ -44,35 +48,35 @@
| GLM 4.7 Flash | `zai-org-glm-4.7-flash` | $0.13 | $0.50 | - | - | 128K | Private |
| GLM 4.7 Flash Heretic | `olafangensan-glm-4.7-flash-heretic` | $0.07 | $0.40 | $0.04 | - | 200K | Private |
| GLM 5 | `zai-org-glm-5` | $1.00 | $3.20 | $0.20 | - | 198K | Private |
| GLM 5 Turbo | `z-ai-glm-5-turbo` | $1.20 | $4.00 | $0.24 | - | 200K | Anonymized |

Check warning on line 51 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L51

Did you really mean 'Anonymized'?
| GLM 5.1 (Beta) | `zai-org-glm-5-1` | $1.54 | $4.84 | $0.29 | - | 200K | Private |
| GLM 5.1 (Beta) | `e2ee-glm-5-1` | $1.10 | $4.15 | - | - | 200K | E2EE · Private |
| GLM 5.2 (Beta) | `zai-org-glm-5-2` | $1.40 | $4.40 | $0.26 | - | 1000K | Private |
| GLM 5.2 (Beta) | `e2ee-glm-5-2-p` | $1.75 | $5.75 | - | - | 524K | E2EE · Private |
| GLM 5V Turbo (Beta) | `z-ai-glm-5v-turbo` | $1.50 | $5.00 | $0.30 | - | 200K | Anonymized |

Check warning on line 56 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L56

Did you really mean 'Anonymized'?
| Google Gemma 3 27B Instruct | `google-gemma-3-27b-it` | $0.12 | $0.20 | - | - | 198K | Private |
| Google Gemma 4 26B A4B Instruct | `google-gemma-4-26b-a4b-it` | $0.13 | $0.40 | $0.05 | - | 256K | Private |
| Google Gemma 4 31B Instruct | `google-gemma-4-31b-it` | $0.12 | $0.36 | $0.09 | - | 256K | Private |
| GPT OSS 120B (Beta) | `e2ee-gpt-oss-120b-p` | $0.13 | $0.65 | - | - | 128K | E2EE · Private |
| GPT OSS 20B (Beta) | `e2ee-gpt-oss-20b-p` | $0.05 | $0.19 | - | - | 128K | E2EE · Private |
| GPT-4o | `openai-gpt-4o-2024-11-20` | $3.13 | $12.50 | - | - | 128K | Anonymized |

Check warning on line 62 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L62

Did you really mean 'Anonymized'?
| GPT-4o Mini | `openai-gpt-4o-mini-2024-07-18` | $0.19 | $0.75 | $0.09 | - | 128K | Anonymized |

Check warning on line 63 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L63

Did you really mean 'Anonymized'?
| GPT-5.2 | `openai-gpt-52` | $2.19 | $17.50 | $0.22 | - | 256K | Anonymized |

Check warning on line 64 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L64

Did you really mean 'Anonymized'?
| GPT-5.2 Codex | `openai-gpt-52-codex` | $2.19 | $17.50 | $0.22 | - | 256K | Anonymized |

Check warning on line 65 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L65

Did you really mean 'Anonymized'?
| GPT-5.3 Codex (Beta) | `openai-gpt-53-codex` | $2.19 | $17.50 | $0.22 | - | 400K | Anonymized |

Check warning on line 66 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L66

Did you really mean 'Anonymized'?
| GPT-5.4 (Beta) | `openai-gpt-54` | $3.13 | $18.80 | $0.31 | - | 1000K | Anonymized |

Check warning on line 67 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L67

Did you really mean 'Anonymized'?
| GPT-5.4 Mini (Beta) | `openai-gpt-54-mini` | $0.94 | $5.63 | $0.09 | - | 400K | Anonymized |

Check warning on line 68 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L68

Did you really mean 'Anonymized'?
| GPT-5.4 Pro (Beta) | `openai-gpt-54-pro` | $37.50 | $225.00 | - | - | 1000K | Anonymized |

Check warning on line 69 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L69

Did you really mean 'Anonymized'?
| ↳ سياق >272K | | $75.00 | $337.50 | - | - | | |
| GPT-5.5 (Beta) | `openai-gpt-55` | $6.25 | $37.50 | $0.63 | - | 1000K | Anonymized |

Check warning on line 71 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L71

Did you really mean 'Anonymized'?
| ↳ سياق >272K | | $12.50 | $56.25 | $1.25 | - | | |
| GPT-5.5 Pro (Beta) | `openai-gpt-55-pro` | $37.50 | $225.00 | - | - | 1000K | Anonymized |

Check warning on line 73 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L73

Did you really mean 'Anonymized'?
| GPT-5.6 Luna (Beta) | `openai-gpt-56-luna` | $1.25 | $7.50 | $0.13 | $1.56 | 1000K | Anonymized |

Check warning on line 74 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L74

Did you really mean 'Anonymized'?
| GPT-5.6 Luna Pro (Beta) | `openai-gpt-56-luna-pro` | $1.25 | $7.50 | $0.13 | $1.56 | 1000K | Anonymized |

Check warning on line 75 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L75

Did you really mean 'Anonymized'?
| GPT-5.6 Sol (Beta) | `openai-gpt-56-sol` | $6.25 | $37.50 | $0.63 | $7.81 | 1000K | Anonymized |

Check warning on line 76 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L76

Did you really mean 'Anonymized'?
| GPT-5.6 Sol Pro (Beta) | `openai-gpt-56-sol-pro` | $6.25 | $37.50 | $0.63 | $7.81 | 1000K | Anonymized |

Check warning on line 77 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L77

Did you really mean 'Anonymized'?
| GPT-5.6 Terra (Beta) | `openai-gpt-56-terra` | $3.13 | $18.75 | $0.31 | $3.91 | 1000K | Anonymized |

Check warning on line 78 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L78

Did you really mean 'Anonymized'?
| GPT-5.6 Terra Pro (Beta) | `openai-gpt-56-terra-pro` | $3.13 | $18.75 | $0.31 | $3.91 | 1000K | Anonymized |

Check warning on line 79 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L79

Did you really mean 'Anonymized'?
| Grok 4.20 | `grok-4-20` | $1.42 | $2.83 | $0.23 | - | 2000K | Private |
| ↳ سياق >200K | | $2.83 | $5.67 | $0.45 | - | | |
| Grok 4.20 Multi-Agent | `grok-4-20-multi-agent` | $1.42 | $2.83 | $0.23 | - | 2000K | Private |
Expand All @@ -84,37 +88,37 @@
| Grok Build 0.1 (Beta) | `grok-build-0-1` | $1.00 | $2.00 | $0.20 | - | 256K | Private |
| ↳ سياق >200K | | $2.00 | $4.00 | $0.40 | - | | |
| Hermes 3 Llama 3.1 405b | `hermes-3-llama-3.1-405b` | $1.10 | $3.00 | - | - | 128K | Private |
| Kimi K2.5 | `kimi-k2-5` | $0.56 | $3.50 | $0.22 | - | 256K | Private |

Check warning on line 91 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L91

Did you really mean 'Kimi'?
| Kimi K2.6 | `kimi-k2-6` | $0.75 | $3.50 | $0.16 | - | 256K | Private |

Check warning on line 92 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L92

Did you really mean 'Kimi'?
| Kimi K2.7 Code (Beta) | `kimi-k2-7-code` | $0.75 | $3.50 | $0.16 | - | 256K | Private |

Check warning on line 93 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L93

Did you really mean 'Kimi'?
| Llama 3.2 3B | `llama-3.2-3b` | $0.15 | $0.60 | - | - | 128K | Private |
| Llama 3.3 70B | `llama-3.3-70b` | $0.70 | $2.80 | - | - | 128K | Private |
| Mercury 2 (Beta) | `mercury-2` | $0.31 | $0.94 | $0.03 | - | 128K | Anonymized |

Check warning on line 96 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L96

Did you really mean 'Anonymized'?
| MiMo-V2.5 | `xiaomi-mimo-v2-5` | $0.14 | $0.28 | $0.05 | - | 1000K | Private |
| MiniMax M2.5 | `minimax-m25` | $0.27 | $0.95 | $0.03 | - | 198K | Private |
| MiniMax M2.7 | `minimax-m27` | $0.38 | $1.50 | $0.07 | - | 198K | Private |
| MiniMax M3 Preview (Beta) | `minimax-m3-preview` | $0.30 | $1.20 | $0.06 | - | 524K | Private |
| Mistral Small 3.2 24B Instruct | `mistral-small-3-2-24b-instruct` | $0.09 | $0.25 | - | - | 256K | Private |
| Mistral Small 4 (Beta) | `mistral-small-2603` | $0.19 | $0.75 | - | - | 256K | Private |
| Nemotron Cascade 2 30B A3B (Beta) | `nvidia-nemotron-cascade-2-30b-a3b` | $0.14 | $0.80 | - | - | 256K | Private |

Check warning on line 103 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L103

Did you really mean 'Nemotron'?
| NVIDIA Nemotron 3 Nano 30B (Beta) | `nvidia-nemotron-3-nano-30b-a3b` | $0.07 | $0.30 | - | - | 128K | Private |

Check warning on line 104 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L104

Did you really mean 'Nemotron'?

Check warning on line 104 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L104

Did you really mean 'Nano'?
| NVIDIA Nemotron 3 Ultra | `nvidia-nemotron-3-ultra-550b-a55b` | $0.63 | $3.13 | $0.19 | - | 256K | Private |

Check warning on line 105 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L105

Did you really mean 'Nemotron'?
| OpenAI GPT OSS 120B | `openai-gpt-oss-120b` | $0.07 | $0.30 | - | - | 128K | Private |
| Qwen 2.5 7B (Beta) | `e2ee-qwen-2-5-7b-p` | $0.05 | $0.13 | - | - | 32K | E2EE · Private |

Check warning on line 107 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L107

Did you really mean 'Qwen'?
| Qwen 3 235B A22B Instruct 2507 | `qwen3-235b-a22b-instruct-2507` | $0.15 | $0.75 | - | - | 128K | Private |

Check warning on line 108 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L108

Did you really mean 'Qwen'?
| Qwen 3 235B A22B Thinking 2507 | `qwen3-235b-a22b-thinking-2507` | $0.45 | $3.50 | - | - | 128K | Private |

Check warning on line 109 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L109

Did you really mean 'Qwen'?
| Qwen 3 Coder 480B Turbo (Beta) | `qwen3-coder-480b-a35b-instruct-turbo` | $0.35 | $1.50 | $0.04 | - | 256K | Private |

Check warning on line 110 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L110

Did you really mean 'Qwen'?
| Qwen 3 Next 80b | `qwen3-next-80b` | $0.35 | $1.90 | - | - | 256K | Private |

Check warning on line 111 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L111

Did you really mean 'Qwen'?
| Qwen 3.5 35B A3B (Beta) | `qwen3-5-35b-a3b` | $0.31 | $1.25 | $0.16 | - | 256K | Private |

Check warning on line 112 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L112

Did you really mean 'Qwen'?
| Qwen 3.5 397B | `qwen3-5-397b-a17b` | $0.75 | $4.50 | - | - | 128K | Anonymized |

Check warning on line 113 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L113

Did you really mean 'Qwen'?

Check warning on line 113 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L113

Did you really mean 'Anonymized'?
| Qwen 3.5 9B | `qwen3-5-9b` | $0.10 | $0.15 | - | - | 256K | Private |

Check warning on line 114 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L114

Did you really mean 'Qwen'?
| Qwen 3.6 27B | `qwen3-6-27b` | $0.33 | $3.25 | - | - | 256K | Private |

Check warning on line 115 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L115

Did you really mean 'Qwen'?
| Qwen 3.6 27B FP8 (Beta) | `e2ee-qwen3-6-27b` | $0.35 | $3.46 | $0.17 | - | 256K | E2EE · Private |

Check warning on line 116 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L116

Did you really mean 'Qwen'?
| Qwen 3.6 35B A3B FP8 (Beta) | `e2ee-qwen3-6-35b-a3b` | $0.18 | $1.18 | $0.06 | - | 32K | E2EE · Private |

Check warning on line 117 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L117

Did you really mean 'Qwen'?
| Qwen 3.6 Plus Uncensored (Beta) | `qwen-3-6-plus` | $0.63 | $3.75 | $0.06 | $0.78 | 1000K | Anonymized |

Check warning on line 118 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L118

Did you really mean 'Qwen'?

Check warning on line 118 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L118

Did you really mean 'Anonymized'?
| ↳ سياق >256K | | $2.50 | $7.50 | $0.06 | $0.78 | | |
| Qwen 3.7 Max (Beta) | `qwen-3-7-max` | $2.70 | $8.05 | $0.27 | $3.35 | 1000K | Anonymized |

Check warning on line 120 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L120

Did you really mean 'Qwen'?

Check warning on line 120 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L120

Did you really mean 'Anonymized'?
| Qwen 3.7 Plus (Beta) | `qwen-3-7-plus` | $0.50 | $2.00 | $0.05 | $0.63 | 1000K | Anonymized |

Check warning on line 121 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L121

Did you really mean 'Qwen'?

Check warning on line 121 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L121

Did you really mean 'Anonymized'?
| ↳ سياق >256K | | $1.50 | $6.00 | $0.15 | $1.88 | | |
| Qwen3 30B A3B (Beta) | `e2ee-qwen3-30b-a3b-p` | $0.19 | $0.69 | - | - | 256K | E2EE · Private |
| Qwen3 VL 235B | `qwen3-vl-235b-a22b` | $0.21 | $1.90 | $0.10 | - | 128K | Private |
Expand All @@ -136,13 +140,13 @@
|---|---|---|---|---|
| BGE-EN-ICL | `text-embedding-bge-en-icl` | $0.01 | $0.01 | Private |
| BGE-M3 | `text-embedding-bge-m3` | $0.15 | $0.60 | Private |
| Gemini Embedding 2 Preview | `gemini-embedding-2-preview` | $0.25 | $0.25 | Anonymized |

Check warning on line 143 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L143

Did you really mean 'Anonymized'?
| Multilingual E5 Large Instruct | `text-embedding-multilingual-e5-large-instruct` | $0.01 | $0.01 | Private |
| Nemotron Embed VL 1B v2 | `text-embedding-nemotron-embed-vl-1b-v2` | $0.01 | $0.01 | Private |

Check warning on line 145 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L145

Did you really mean 'Nemotron'?
| Qwen3 Embedding 0.6B | `text-embedding-qwen3-0-6b` | $0.01 | $0.01 | Private |
| Qwen3 Embedding 8B | `text-embedding-qwen3-8b` | $0.01 | $0.01 | Private |
| Text Embedding 3 Large | `text-embedding-3-large` | $0.16 | $0.16 | Anonymized |

Check warning on line 148 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L148

Did you really mean 'Anonymized'?
| Text Embedding 3 Small | `text-embedding-3-small` | $0.03 | $0.03 | Anonymized |

Check warning on line 149 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L149

Did you really mean 'Anonymized'?

</div>

Expand All @@ -156,47 +160,47 @@

| النموذج | المعرّف | السعر | الخصوصية |
|---|---|---|---|
| Recraft V4 Pro | `recraft-v4-pro` | لكل صورة: $0.29 | Anonymized |

Check warning on line 163 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L163

Did you really mean 'Recraft'?

Check warning on line 163 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L163

Did you really mean 'Anonymized'?
| GPT Image 2 | `gpt-image-2` | 1K: $0.27, 2K: $0.51, 4K: $0.84 | Anonymized |

Check warning on line 164 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L164

Did you really mean 'Anonymized'?
| GPT Image 1.5 | `gpt-image-1-5` | لكل صورة: $0.26 | Anonymized |

Check warning on line 165 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L165

Did you really mean 'Anonymized'?
| Nano Banana Pro | `nano-banana-pro` | 1K: $0.18, 2K: $0.23, 4K: $0.35 | Anonymized |

Check warning on line 166 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L166

Did you really mean 'Nano'?

Check warning on line 166 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L166

Did you really mean 'Anonymized'?
| Luma Uni-1 Max | `luma-uni-1-max` | لكل صورة: $0.12 | Anonymized |

Check warning on line 167 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L167

Did you really mean 'Luma'?

Check warning on line 167 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L167

Did you really mean 'Anonymized'?
| Nano Banana 2 | `nano-banana-2` | 1K: $0.10, 2K: $0.14, 4K: $0.19 | Anonymized |

Check warning on line 168 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L168

Did you really mean 'Nano'?

Check warning on line 168 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L168

Did you really mean 'Anonymized'?
| Qwen Image 2 Pro | `qwen-image-2-pro` | لكل صورة: $0.10 | Anonymized |

Check warning on line 169 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L169

Did you really mean 'Qwen'?

Check warning on line 169 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L169

Did you really mean 'Anonymized'?
| Wan 2.7 Pro | `wan-2-7-pro-text-to-image` | لكل صورة: $0.09 | Anonymized |

Check warning on line 170 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L170

Did you really mean 'Anonymized'?
| Flux 2 Max | `flux-2-max` | لكل صورة: $0.09 | Anonymized |

Check warning on line 171 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L171

Did you really mean 'Anonymized'?
| Grok Imagine High Quality (SOTA) | `grok-imagine-image-quality` | 1K: $0.06, 2K: $0.09 | Private |
| Ideogram V4 | `ideogram-v4` | لكل صورة: $0.06 | Anonymized |

Check warning on line 173 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L173

Did you really mean 'Anonymized'?
| ImagineArt 1.5 Pro | `imagineart-1.5-pro` | لكل صورة: $0.06 | Anonymized |

Check warning on line 174 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L174

Did you really mean 'Anonymized'?
| Nano Banana 2 Lite | `nano-banana-2-lite` | لكل صورة: $0.06 | Anonymized |

Check warning on line 175 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L175

Did you really mean 'Nano'?

Check warning on line 175 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L175

Did you really mean 'Anonymized'?
| Seedream V5 Pro | `seedream-v5-pro` | 1K: $0.06, 2K: $0.11 | Anonymized |

Check warning on line 176 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L176

Did you really mean 'Seedream'?

Check warning on line 176 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L176

Did you really mean 'Anonymized'?
| Luma Uni-1 | `luma-uni-1` | لكل صورة: $0.05 | Anonymized |

Check warning on line 177 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L177

Did you really mean 'Luma'?

Check warning on line 177 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L177

Did you really mean 'Anonymized'?
| Qwen Image 2 | `qwen-image-2` | لكل صورة: $0.05 | Anonymized |

Check warning on line 178 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L178

Did you really mean 'Qwen'?

Check warning on line 178 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L178

Did you really mean 'Anonymized'?
| Recraft V4 | `recraft-v4` | لكل صورة: $0.05 | Anonymized |

Check warning on line 179 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L179

Did you really mean 'Recraft'?

Check warning on line 179 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L179

Did you really mean 'Anonymized'?
| Seedream V4.5 | `seedream-v4` | لكل صورة: $0.05 | Anonymized |

Check warning on line 180 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L180

Did you really mean 'Seedream'?

Check warning on line 180 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L180

Did you really mean 'Anonymized'?
| Seedream V5 Lite | `seedream-v5-lite` | لكل صورة: $0.05 | Anonymized |

Check warning on line 181 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L181

Did you really mean 'Seedream'?

Check warning on line 181 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L181

Did you really mean 'Anonymized'?
| Krea 2 Turbo | `krea-2-turbo` | 1K: $0.04, 2K: $0.06 | Private |

Check warning on line 182 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L182

Did you really mean 'Krea'?
| Wan 2.7 | `wan-2-7-text-to-image` | لكل صورة: $0.04 | Anonymized |

Check warning on line 183 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L183

Did you really mean 'Anonymized'?
| Background Remover | `bria-bg-remover` | لكل صورة: $0.03 | Anonymized |

Check warning on line 184 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L184

Did you really mean 'Anonymized'?
| Flux 2 Pro | `flux-2-pro` | لكل صورة: $0.03 | Anonymized |

Check warning on line 185 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L185

Did you really mean 'Anonymized'?
| Grok Imagine | `grok-imagine-image` | 1K: $0.03, 2K: $0.04 | Private |
| Qwen Image | `qwen-image` | لكل صورة: $0.03 | Anonymized |

Check warning on line 187 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L187

Did you really mean 'Qwen'?

Check warning on line 187 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L187

Did you really mean 'Anonymized'?
| Anime (WAI) | `wai-Illustrious` | لكل صورة: $0.01 | Private |
| Chroma | `chroma` | لكل صورة: $0.01 | Private |
| Lustify SDXL | `lustify-sdxl` | لكل صورة: $0.01 | Private |

Check warning on line 190 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L190

Did you really mean 'Lustify'?
| Lustify v7 | `lustify-v7` | لكل صورة: $0.01 | Private |

Check warning on line 191 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L191

Did you really mean 'Lustify'?
| Lustify v8 | `lustify-v8` | لكل صورة: $0.01 | Private |

Check warning on line 192 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L192

Did you really mean 'Lustify'?
| Venice SD35 | `venice-sd35` | لكل صورة: $0.01 | Private |
| Z-Image Turbo | `z-image-turbo` | لكل صورة: $0.01 | Private |
| Hunyuan Image 3.0 (Beta) | `hunyuan-image-v3` | لكل صورة: $0.09 | Private |

Check warning on line 195 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L195

Did you really mean 'Hunyuan'?
| Krea v2 Large (Beta) | `krea-v2-large` | لكل صورة: $0.07 | Anonymized |

Check warning on line 196 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L196

Did you really mean 'Krea'?

Check warning on line 196 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L196

Did you really mean 'Anonymized'?
| Krea v2 Medium (Beta) | `krea-v2-medium` | لكل صورة: $0.04 | Anonymized |

Check warning on line 197 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L197

Did you really mean 'Krea'?

Check warning on line 197 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L197

Did you really mean 'Anonymized'?

#### ترقية الدقّة

| النموذج | المعرّف | ترقية 2x | ترقية 4x |
|---|---|---|---|
| Image Upscaler | `upscaler` | $0.02 | $0.08 |

Check warning on line 203 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L203

Did you really mean 'Upscaler'?

#### التحرير

Expand All @@ -208,19 +212,19 @@
| GPT Image 2 | `gpt-image-2-edit` | $0.34 | $0.0092 |
| Grok Imagine | `grok-imagine-edit` | $0.03 | $0.0023 |
| Grok Imagine High Quality | `grok-imagine-quality-edit` | $0.06 | $0.01 |
| Luma Uni-1 | `luma-uni-1-edit` | $0.06 | - |

Check warning on line 215 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L215

Did you really mean 'Luma'?
| Luma Uni-1 Max | `luma-uni-1-max-edit` | $0.13 | - |

Check warning on line 216 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L216

Did you really mean 'Luma'?
| Nano Banana 2 | `nano-banana-2-edit` | $0.10 | - |

Check warning on line 217 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L217

Did you really mean 'Nano'?
| Nano Banana 2 Lite | `nano-banana-2-lite-edit` | $0.06 | - |

Check warning on line 218 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L218

Did you really mean 'Nano'?
| Nano Banana Pro | `nano-banana-pro-edit` | $0.18 | - |

Check warning on line 219 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L219

Did you really mean 'Nano'?
| Qwen Edit Uncensored | `qwen-edit-uncensored` | $0.04 | - |

Check warning on line 220 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L220

Did you really mean 'Qwen'?
| Qwen Image 2 | `qwen-image-2-edit` | $0.05 | - |

Check warning on line 221 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L221

Did you really mean 'Qwen'?
| Qwen Image 2 Pro | `qwen-image-2-pro-edit` | $0.10 | - |

Check warning on line 222 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L222

Did you really mean 'Qwen'?
| Seedream V4.5 | `seedream-v4-edit` | $0.05 | - |

Check warning on line 223 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L223

Did you really mean 'Seedream'?
| Seedream V5 Lite | `seedream-v5-lite-edit` | $0.05 | - |

Check warning on line 224 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L224

Did you really mean 'Seedream'?
| Seedream V5 Pro | `seedream-v5-pro-edit` | $0.11 | $0.0035 |

Check warning on line 225 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L225

Did you really mean 'Seedream'?
| Wan 2.7 Pro Edit | `wan-2-7-pro-edit` | $0.09 | - |
| Qwen Image | `qwen-image` | $0.04 | - |

Check warning on line 227 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L227

Did you really mean 'Qwen'?

> **التحرير باستخدام عدة صور إدخال:** يشمل سعر **لكل تعديل** أول صورة إدخال. النماذج التي تعرض سعرًا لعمود **صورة إدخال إضافية** تفرض تلك الرسوم عن كل صورة إدخال إضافية بعد الأولى. مثال: التحرير باستخدام 3 صور إدخال على نموذج بسعر $0.11 لكل تعديل مع رسوم $0.0035 لكل صورة إضافية يكلّف $0.11 + 2 × $0.0035 = $0.117.

Expand All @@ -235,26 +239,26 @@
| النموذج | المعرّف | لكل مليون حرف | الخصوصية |
|---|---|---|---|
| Chatterbox HD (Resemble AI) | `tts-chatterbox-hd` | $50.00 | Private |
| ElevenLabs Turbo v2.5 | `tts-elevenlabs-turbo-v2-5` | $62.50 | Anonymized |

Check warning on line 242 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L242

Did you really mean 'Anonymized'?
| Gemini 3.1 Flash TTS | `tts-gemini-3-1-flash` | $187.50 | Anonymized |

Check warning on line 243 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L243

Did you really mean 'Anonymized'?
| Gradium TTS | `tts-gradium-v1` | $47.50 | Anonymized |

Check warning on line 244 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L244

Did you really mean 'Gradium'?

Check warning on line 244 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L244

Did you really mean 'Anonymized'?
| Inworld TTS-1.5 Max | `tts-inworld-1-5-max` | $12.50 | Anonymized |

Check warning on line 245 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L245

Did you really mean 'Inworld'?

Check warning on line 245 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L245

Did you really mean 'Anonymized'?
| Kokoro Text to Speech | `tts-kokoro` | $3.50 | Private |

Check warning on line 246 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L246

Did you really mean 'Kokoro'?
| MiniMax Speech-02 HD | `tts-minimax-speech-02-hd` | $125.00 | Anonymized |

Check warning on line 247 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L247

Did you really mean 'Anonymized'?
| Orpheus TTS | `tts-orpheus` | $62.50 | Private |
| Qwen 3 TTS 0.6B | `tts-qwen3-0-6b` | $87.50 | Private |

Check warning on line 249 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L249

Did you really mean 'Qwen'?
| Qwen 3 TTS 1.7B | `tts-qwen3-1-7b` | $112.50 | Private |

Check warning on line 250 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L250

Did you really mean 'Qwen'?
| xAI TTS v1 | `tts-xai-v1` | $18.75 | Anonymized |

Check warning on line 251 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L251

Did you really mean 'Anonymized'?

#### من كلام إلى نص

| النموذج | المعرّف | لكل ثانية صوت | الخصوصية |
|---|---|---|---|
| ElevenLabs Scribe V2 | `elevenlabs/scribe-v2` | $0.0002 | Anonymized |

Check warning on line 257 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L257

Did you really mean 'Anonymized'?
| Parakeet ASR | `nvidia/parakeet-tdt-0.6b-v3` | $0.0001 | Private |
| Whisper Large V3 | `openai/whisper-large-v3` | $0.0001 | Private |
| Wizper (Whisper v3) | `fal-ai/wizper` | $0.0001 | Private |

Check warning on line 260 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L260

Did you really mean 'Wizper'?
| xAI Speech to Text v1 | `stt-xai-v1` | $0.0000 | Anonymized |

Check warning on line 261 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L261

Did you really mean 'Anonymized'?

</div>

Expand All @@ -266,26 +270,26 @@

| النموذج | المعرّف | تسعير المدة | الخصوصية |
|---|---|---|---|
| ACE-Step 1.5 | `ace-step-15` | 60s: $0.03, 90s: $0.04, 120s: $0.05, 150s: $0.06, 180s: $0.07, 210s: $0.08 | Anonymized |

Check warning on line 273 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L273

Did you really mean 'Anonymized'?
| ElevenLabs Music | `elevenlabs-music` | 60s: $0.69, 120s: $1.38, 180s: $2.08, 240s: $2.76, 300s: $3.45, 360s: $4.15, 420s: $4.84, 480s: $5.52, 540s: $6.22, 600s: $6.90 | Anonymized |

Check warning on line 274 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L274

Did you really mean 'Anonymized'?

#### توليد الأغاني (لكل توليد)

| النموذج | المعرّف | لكل توليد | الخصوصية |
|---|---|---|---|
| Lyria 3 Pro | `lyria-3-pro` | $0.10 | Anonymized |

Check warning on line 280 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L280

Did you really mean 'Lyria'?

Check warning on line 280 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L280

Did you really mean 'Anonymized'?
| MiniMax Music 2.0 | `minimax-music-v2` | $0.04 | Anonymized |

Check warning on line 281 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L281

Did you really mean 'Anonymized'?
| MiniMax Music 2.5 | `minimax-music-v25` | $0.18 | Anonymized |

Check warning on line 282 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L282

Did you really mean 'Anonymized'?
| MiniMax Music 2.6 | `minimax-music-v26` | $0.18 | Anonymized |

Check warning on line 283 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L283

Did you really mean 'Anonymized'?
| Stable Audio 2.5 | `stable-audio-25` | $0.19 | Anonymized |

Check warning on line 284 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L284

Did you really mean 'Anonymized'?

#### المؤثرات الصوتية (لكل ثانية)

| النموذج | المعرّف | لكل ثانية | الخصوصية |
|---|---|---|---|
| ElevenLabs Sound Effects | `elevenlabs-sound-effects-v2` | $0.0023 | Anonymized |

Check warning on line 290 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L290

Did you really mean 'Anonymized'?
| MMAudio V2 | `mmaudio-v2-text-to-audio` | $0.0009 | Anonymized |

Check warning on line 291 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L291

Did you really mean 'MMAudio'?

Check warning on line 291 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L291

Did you really mean 'Anonymized'?
| Seed Audio 1.0 | `seed-audio-1-0` | $0.0029 | Anonymized |

Check warning on line 292 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L292

Did you really mean 'Anonymized'?

</div>

Expand All @@ -301,98 +305,98 @@

| النموذج | المعرّف | النوع | التسعير | الخصوصية |
|---|---|---|---|---|
| Gemini Omni Flash | `gemini-omni-flash-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 308 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L308

Did you really mean 'Omni'?

Check warning on line 308 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L308

Did you really mean 'Anonymized'?
| Gemini Omni Flash | `gemini-omni-flash-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 309 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L309

Did you really mean 'Omni'?

Check warning on line 309 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L309

Did you really mean 'Anonymized'?
| Gemini Omni Flash R2V | `gemini-omni-flash-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 310 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L310

Did you really mean 'Omni'?

Check warning on line 310 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L310

Did you really mean 'Anonymized'?
| Grok Imagine 1.5 Private | `grok-imagine-1-5-image-to-video-private` | Image to Video | متغيّر | Private |
| Grok Imagine Private | `grok-imagine-text-to-video-private` | Text to Video | متغيّر | Private |
| Grok Imagine Private | `grok-imagine-image-to-video-private` | Image to Video | متغيّر | Private |
| Grok Imagine Private | `grok-imagine-video-to-video-private` | Text to Video | متغيّر | Private |
| Grok Imagine R2V Private | `grok-imagine-reference-to-video-private` | Text to Video | متغيّر | Private |
| HappyHorse 1.0 | `happyhorse-1-0-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 316 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L316

Did you really mean 'Anonymized'?
| HappyHorse 1.0 | `happyhorse-1-0-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 317 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L317

Did you really mean 'Anonymized'?
| HappyHorse 1.0 Edit | `happyhorse-1-0-video-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 318 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L318

Did you really mean 'Anonymized'?
| HappyHorse 1.0 Reference | `happyhorse-1-0-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 319 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L319

Did you really mean 'Anonymized'?
| HappyHorse 1.1 | `happyhorse-1-1-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 320 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L320

Did you really mean 'Anonymized'?
| HappyHorse 1.1 | `happyhorse-1-1-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 321 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L321

Did you really mean 'Anonymized'?
| HappyHorse 1.1 Reference | `happyhorse-1-1-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 322 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L322

Did you really mean 'Anonymized'?
| Kling 2.5 Turbo Pro | `kling-2.5-turbo-pro-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 323 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L323

Did you really mean 'Kling'?

Check warning on line 323 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L323

Did you really mean 'Anonymized'?
| Kling 2.5 Turbo Pro | `kling-2.5-turbo-pro-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 324 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L324

Did you really mean 'Kling'?

Check warning on line 324 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L324

Did you really mean 'Anonymized'?
| Kling 2.6 Pro | `kling-2.6-pro-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 325 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L325

Did you really mean 'Kling'?

Check warning on line 325 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L325

Did you really mean 'Anonymized'?
| Kling 2.6 Pro | `kling-2.6-pro-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 326 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L326

Did you really mean 'Kling'?

Check warning on line 326 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L326

Did you really mean 'Anonymized'?
| Kling O3 4K | `kling-o3-4k-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 327 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L327

Did you really mean 'Kling'?

Check warning on line 327 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L327

Did you really mean 'Anonymized'?
| Kling O3 4K | `kling-o3-4k-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 328 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L328

Did you really mean 'Kling'?

Check warning on line 328 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L328

Did you really mean 'Anonymized'?
| Kling O3 4K R2V | `kling-o3-4k-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 329 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L329

Did you really mean 'Kling'?

Check warning on line 329 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L329

Did you really mean 'Anonymized'?
| Kling O3 Pro | `kling-o3-pro-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 330 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L330

Did you really mean 'Kling'?

Check warning on line 330 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L330

Did you really mean 'Anonymized'?
| Kling O3 Pro | `kling-o3-pro-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 331 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L331

Did you really mean 'Kling'?

Check warning on line 331 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L331

Did you really mean 'Anonymized'?
| Kling O3 Pro R2V (Beta) | `kling-o3-pro-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 332 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L332

Did you really mean 'Kling'?

Check warning on line 332 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L332

Did you really mean 'Anonymized'?
| Kling O3 Standard | `kling-o3-standard-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 333 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L333

Did you really mean 'Kling'?

Check warning on line 333 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L333

Did you really mean 'Anonymized'?
| Kling O3 Standard | `kling-o3-standard-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 334 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L334

Did you really mean 'Kling'?

Check warning on line 334 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L334

Did you really mean 'Anonymized'?
| Kling O3 Standard R2V (Beta) | `kling-o3-standard-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 335 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L335

Did you really mean 'Kling'?

Check warning on line 335 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L335

Did you really mean 'Anonymized'?
| Kling V3 4K | `kling-v3-4k-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 336 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L336

Did you really mean 'Kling'?

Check warning on line 336 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L336

Did you really mean 'Anonymized'?
| Kling V3 4K R2V | `kling-v3-4k-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 337 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L337

Did you really mean 'Kling'?

Check warning on line 337 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L337

Did you really mean 'Anonymized'?
| Kling V3 Pro | `kling-v3-pro-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 338 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L338

Did you really mean 'Kling'?

Check warning on line 338 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L338

Did you really mean 'Anonymized'?
| Kling V3 Pro | `kling-v3-pro-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 339 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L339

Did you really mean 'Kling'?

Check warning on line 339 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L339

Did you really mean 'Anonymized'?
| Kling V3 Pro Motion Control | `kling-v3-pro-motion-control` | Text to Video | متغيّر | Anonymized |

Check warning on line 340 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L340

Did you really mean 'Kling'?

Check warning on line 340 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L340

Did you really mean 'Anonymized'?
| Kling V3 Standard | `kling-v3-standard-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 341 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L341

Did you really mean 'Kling'?

Check warning on line 341 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L341

Did you really mean 'Anonymized'?
| Kling V3 Standard | `kling-v3-standard-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 342 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L342

Did you really mean 'Kling'?

Check warning on line 342 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L342

Did you really mean 'Anonymized'?
| Kling V3 Standard Motion Control | `kling-v3-standard-motion-control` | Text to Video | متغيّر | Anonymized |

Check warning on line 343 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L343

Did you really mean 'Kling'?

Check warning on line 343 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L343

Did you really mean 'Anonymized'?
| Kling V3 Turbo Pro | `kling-v3-turbo-pro-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 344 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L344

Did you really mean 'Kling'?

Check warning on line 344 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L344

Did you really mean 'Anonymized'?
| Kling V3 Turbo Pro | `kling-v3-turbo-pro-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 345 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L345

Did you really mean 'Kling'?

Check warning on line 345 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L345

Did you really mean 'Anonymized'?
| Kling V3 Turbo Standard | `kling-v3-turbo-standard-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 346 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L346

Did you really mean 'Kling'?

Check warning on line 346 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L346

Did you really mean 'Anonymized'?
| Kling V3 Turbo Standard | `kling-v3-turbo-standard-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 347 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L347

Did you really mean 'Kling'?

Check warning on line 347 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L347

Did you really mean 'Anonymized'?
| Longcat Distilled | `longcat-distilled-image-to-video` | Image to Video | متغيّر | Private |

Check warning on line 348 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L348

Did you really mean 'Longcat'?
| Longcat Distilled | `longcat-distilled-text-to-video` | Text to Video | متغيّر | Private |

Check warning on line 349 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L349

Did you really mean 'Longcat'?
| Longcat Full Quality | `longcat-image-to-video` | Image to Video | متغيّر | Private |

Check warning on line 350 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L350

Did you really mean 'Longcat'?
| Longcat Full Quality | `longcat-text-to-video` | Text to Video | متغيّر | Private |

Check warning on line 351 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L351

Did you really mean 'Longcat'?
| LTX Video 2.0 19B | `ltx-2-19b-full-text-to-video` | Text to Video | متغيّر | Private |
| LTX Video 2.0 19B | `ltx-2-19b-full-image-to-video` | Image to Video | متغيّر | Private |
| LTX Video 2.0 19B Distilled | `ltx-2-19b-distilled-text-to-video` | Text to Video | متغيّر | Private |
| LTX Video 2.0 19B Distilled | `ltx-2-19b-distilled-image-to-video` | Image to Video | متغيّر | Private |
| LTX Video 2.0 Fast | `ltx-2-fast-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 356 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L356

Did you really mean 'Anonymized'?
| LTX Video 2.0 Fast | `ltx-2-fast-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 357 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L357

Did you really mean 'Anonymized'?
| LTX Video 2.0 Full Quality | `ltx-2-full-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 358 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L358

Did you really mean 'Anonymized'?
| LTX Video 2.0 Full Quality | `ltx-2-full-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 359 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L359

Did you really mean 'Anonymized'?
| LTX Video 2.3 Fast | `ltx-2-v2-3-fast-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 360 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L360

Did you really mean 'Anonymized'?
| LTX Video 2.3 Fast | `ltx-2-v2-3-fast-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 361 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L361

Did you really mean 'Anonymized'?
| LTX Video 2.3 Full Quality | `ltx-2-v2-3-full-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 362 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L362

Did you really mean 'Anonymized'?
| LTX Video 2.3 Full Quality | `ltx-2-v2-3-full-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 363 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L363

Did you really mean 'Anonymized'?
| Ovi | `ovi-image-to-video` | Image to Video | متغيّر | Private |

Check warning on line 364 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L364

Did you really mean 'Ovi'?
| PixVerse C1 | `pixverse-c1-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 365 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L365

Did you really mean 'Anonymized'?
| PixVerse C1 | `pixverse-c1-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 366 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L366

Did you really mean 'Anonymized'?
| PixVerse C1 R2V | `pixverse-c1-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 367 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L367

Did you really mean 'Anonymized'?
| PixVerse C1 Transition | `pixverse-c1-transition` | Text to Video | متغيّر | Anonymized |

Check warning on line 368 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L368

Did you really mean 'Anonymized'?
| PixVerse v5.6 | `pixverse-v5.6-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 369 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L369

Did you really mean 'Anonymized'?
| PixVerse v5.6 | `pixverse-v5.6-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 370 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L370

Did you really mean 'Anonymized'?
| PixVerse v5.6 Transition | `pixverse-v5.6-transition` | Text to Video | متغيّر | Anonymized |

Check warning on line 371 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L371

Did you really mean 'Anonymized'?
| Runway Gen-4 Aleph | `runway-gen4-aleph` | Text to Video | متغيّر | Anonymized |

Check warning on line 372 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L372

Did you really mean 'Anonymized'?
| Runway Gen-4 Turbo | `runway-gen4-turbo` | Text to Video | متغيّر | Anonymized |

Check warning on line 373 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L373

Did you really mean 'Anonymized'?
| Runway Gen-4.5 | `runway-gen4-5` | Text to Video | متغيّر | Anonymized |

Check warning on line 374 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L374

Did you really mean 'Anonymized'?
| Runway Gen-4.5 | `runway-gen4-5-text` | Text to Video | متغيّر | Anonymized |

Check warning on line 375 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L375

Did you really mean 'Anonymized'?
| Topaz Video Upscale | `topaz-video-upscale` | Text to Video | متغيّر | Anonymized |

Check warning on line 376 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L376

Did you really mean 'Anonymized'?
| Veo 3 Fast | `veo3-fast-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 377 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L377

Did you really mean 'Veo'?

Check warning on line 377 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L377

Did you really mean 'Anonymized'?
| Veo 3 Fast | `veo3-fast-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 378 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L378

Did you really mean 'Veo'?

Check warning on line 378 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L378

Did you really mean 'Anonymized'?
| Veo 3 Full Quality | `veo3-full-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 379 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L379

Did you really mean 'Veo'?

Check warning on line 379 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L379

Did you really mean 'Anonymized'?
| Veo 3 Full Quality | `veo3-full-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 380 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L380

Did you really mean 'Veo'?

Check warning on line 380 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L380

Did you really mean 'Anonymized'?
| Veo 3.1 Fast | `veo3.1-fast-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 381 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L381

Did you really mean 'Veo'?

Check warning on line 381 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L381

Did you really mean 'Anonymized'?
| Veo 3.1 Fast | `veo3.1-fast-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 382 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L382

Did you really mean 'Veo'?

Check warning on line 382 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L382

Did you really mean 'Anonymized'?
| Veo 3.1 Full Quality | `veo3.1-full-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 383 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L383

Did you really mean 'Veo'?

Check warning on line 383 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L383

Did you really mean 'Anonymized'?
| Veo 3.1 Full Quality | `veo3.1-full-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 384 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L384

Did you really mean 'Veo'?

Check warning on line 384 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L384

Did you really mean 'Anonymized'?
| Vidu Q3 | `vidu-q3-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 385 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L385

Did you really mean 'Vidu'?

Check warning on line 385 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L385

Did you really mean 'Anonymized'?
| Vidu Q3 | `vidu-q3-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 386 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L386

Did you really mean 'Vidu'?

Check warning on line 386 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L386

Did you really mean 'Anonymized'?
| Wan 2.1 Pro | `wan-2.1-pro-image-to-video` | Image to Video | متغيّر | Private |
| Wan 2.2 A14B | `wan-2.2-a14b-text-to-video` | Text to Video | متغيّر | Private |
| Wan 2.5 Preview | `wan-2.5-preview-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 389 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L389

Did you really mean 'Anonymized'?
| Wan 2.5 Preview | `wan-2.5-preview-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 390 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L390

Did you really mean 'Anonymized'?
| Wan 2.6 | `wan-2.6-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 391 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L391

Did you really mean 'Anonymized'?
| Wan 2.6 | `wan-2.6-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 392 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L392

Did you really mean 'Anonymized'?
| Wan 2.6 Flash | `wan-2.6-flash-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 393 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L393

Did you really mean 'Anonymized'?
| Wan 2.7 | `wan-2-7-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 394 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L394

Did you really mean 'Anonymized'?
| Wan 2.7 | `wan-2-7-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 395 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L395

Did you really mean 'Anonymized'?
| Wan 2.7 Edit | `wan-2-7-video-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 396 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L396

Did you really mean 'Anonymized'?
| Wan 2.7 Reference | `wan-2-7-reference-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 397 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L397

Did you really mean 'Anonymized'?
| Wan 2.7 Uncensored | `wan-2-7-uncensored-image-to-video` | Image to Video | متغيّر | Anonymized |

Check warning on line 398 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L398

Did you really mean 'Anonymized'?
| Wan 2.7 Uncensored (Beta) | `wan-2-7-uncensored-text-to-video` | Text to Video | متغيّر | Anonymized |

Check warning on line 399 in ar/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

ar/overview/pricing.mdx#L399

Did you really mean 'Anonymized'?

</div>

Expand Down Expand Up @@ -435,3 +439,5 @@
### مستخدمو Pro

يحصل مشتركو Pro على رصيد API لمرة واحدة بقيمة 10$ عند الترقية إلى Pro. استخدمه لاختبار وبناء تطبيقات صغيرة.

وبعد هذا الرصيد، يُحاسَب استخدام الـ API بنفس أسعار الدفع حسب الاستخدام المذكورة أعلاه — لا يشمل اشتراك Pro نفسه أي مخصصات إضافية للـ API مثل صور أو أحرف أو رموز مضمّنة. تقتصر بعض النماذج على حسابات Pro (`PRO_ONLY_MODEL`)؛ ويؤدي استدعاؤها من حساب بلا اشتراك Pro فعّال إلى إعادة `AUTHENTICATION_FAILED_INACTIVE_KEY`. راجع [رموز الأخطاء](/api-reference/error-codes).
14 changes: 14 additions & 0 deletions de/guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
---
title: Videogenerierung
description: "Generieren Sie Videos aus Text-Prompts oder Startbildern mit Venices asynchroner Queue-API — Job einreichen, Status abfragen und das Video laden."

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'Generieren'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'Sie'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'aus'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'oder'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'Startbildern'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'mit'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'Venices'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'asynchroner'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'einreichen'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'abfragen'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'und'?

Check warning on line 3 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L3

Did you really mean 'das'?
"og:title": "Videogenerierung | Venice API Docs"

Check warning on line 4 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L4

Did you really mean 'Videogenerierung'?
"og:description": "Lerne, wie du mit Venices async Video-Generation-API Videos aus Text-Prompts oder Bildern erzeugst."

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'Lerne'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'wie'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'du'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'mit'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'Venices'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'aus'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'oder'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'Bildern'?

Check warning on line 5 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L5

Did you really mean 'erzeugst'?
---

Die Videogenerierung ist asynchron. Sende einen Job, speichere die `queue_id` und pollte `/video/retrieve`, bis die Antwort `video/mp4` ist.

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'Videogenerierung'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'ist'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'asynchron'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'Sende'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'einen'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'speichere'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'und'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'pollte'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'Antwort'?

Check warning on line 8 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L8

Did you really mean 'ist'?

## Endpoints

| Endpoint | Zweck | Pflicht |

Check warning on line 12 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L12

Did you really mean 'Zweck'?

Check warning on line 12 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L12

Did you really mean 'Pflicht'?
|----------|---------|----------|
| `POST /video/quote` | Preis in USD vor der Generierung abrufen | Nein |

Check warning on line 14 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L14

Did you really mean 'Preis'?

Check warning on line 14 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L14

Did you really mean 'vor'?

Check warning on line 14 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L14

Did you really mean 'Generierung'?

Check warning on line 14 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L14

Did you really mean 'abrufen'?

Check warning on line 14 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L14

Did you really mean 'Nein'?
| `POST /video/queue` | Generierungsanfrage einreichen | Ja |

Check warning on line 15 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L15

Did you really mean 'Generierungsanfrage'?

Check warning on line 15 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L15

Did you really mean 'einreichen'?
| `POST /video/retrieve` | Status pollen oder Video herunterladen | Ja |

Check warning on line 16 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L16

Did you really mean 'oder'?

Check warning on line 16 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L16

Did you really mean 'herunterladen'?
| `POST /video/complete` | Video aus dem Speicher löschen | Nein |

Check warning on line 17 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L17

Did you really mean 'aus'?

Check warning on line 17 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L17

Did you really mean 'dem'?

Check warning on line 17 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L17

Did you really mean 'Speicher'?

Check warning on line 17 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L17

Did you really mean 'Nein'?

## Schritt 1: Generierung in die Queue stellen

Check warning on line 19 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L19

Did you really mean 'Schritt'?

Check warning on line 19 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L19

Did you really mean 'Generierung'?

Check warning on line 19 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L19

Did you really mean 'stellen'?

**Request:**
```bash
Expand All @@ -41,7 +41,7 @@
}
```

Für Grok-Imagine-Private-Modelle enthält die Queue-Antwort ein zusätzliches Feld `download_url`:

Check warning on line 44 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L44

Did you really mean 'ein'?

Check warning on line 44 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L44

Did you really mean 'Feld'?

```json
{
Expand All @@ -51,42 +51,42 @@
}
```

`download_url` ist eine vorsignierte URL, mit der du das fertige Video herunterlädst, statt es aus der Retrieve-Antwort zu lesen. Sie wird nur einmal in der Queue-Antwort zurückgegeben – persistiere sie also zusammen mit der `queue_id`. Das gilt für alle vier Grok-Imagine-Private-Varianten:

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'ist'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'eine'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'vorsignierte'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'mit'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'du'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'das'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'fertige'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'statt'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'aus'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'zu'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'lesen'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'Sie'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'wird'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'nur'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'einmal'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'persistiere'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'sie'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'zusammen'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'mit'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'Das'?

Check warning on line 54 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L54

Did you really mean 'alle'?

- `grok-imagine-text-to-video-private`
- `grok-imagine-image-to-video-private`
- `grok-imagine-reference-to-video-private`
- `grok-imagine-video-to-video-private`

Im Gegensatz zu den öffentlichen `grok-imagine-*-video`-Varianten werden Grok-Imagine-Private-Modelle bei Inhalts-Moderation-Ablehnungen nicht berechnet – du zahlst also nur für erfolgreiche Generierungen.

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'Im'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'Gegensatz'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'zu'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'werden'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'bei'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'nicht'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'berechnet'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'du'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'zahlst'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'nur'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'erfolgreiche'?

Check warning on line 61 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L61

Did you really mean 'Generierungen'?

Speichere `model`, `queue_id` und ggf. `download_url` für alle weiteren Aufrufe.

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'Speichere'?

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'und'?

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'ggf'?

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'alle'?

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'weiteren'?

Check warning on line 63 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L63

Did you really mean 'Aufrufe'?

### Private Download-Links

Bei Private-Modellen ist `download_url` der Weg, die fertige Datei abzuholen, sobald der Job fertig ist. Der Link ist **kurzlebig und zweckgebunden**: Er soll dir das MP4 ausliefern und nicht als langfristige oder breit geteilte URL dienen.

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'Bei'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'Weg'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'fertige'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'Datei'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'abzuholen'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'sobald'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'fertig'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'ist'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'ist'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'kurzlebig'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'und'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'zweckgebunden'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'soll'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'das'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'ausliefern'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'und'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'nicht'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'als'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'langfristige'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'oder'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'breit'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'geteilte'?

Check warning on line 67 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L67

Did you really mean 'dienen'?

Wenn ein Download abbricht, kannst du **denselben `GET` ein paar Mal** aus derselben Umgebung wiederholen, bis die Datei fertig ist. Diese Retries sind für Netzwerk-Hänger gedacht – nicht dafür, denselben Link unbegrenzt zu pollen, ihn auf viele Clients zu verteilen oder ihn wie eine permanente Medien-URL einzubetten. Solche Muster zeigen sich oft als **`429`** oder **`410`**, was überraschend sein kann, wenn du den Link wie reguläres File-Hosting erwartet hast.

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Wenn'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'ein'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'abbricht'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'kannst'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'du'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'ein'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'paar'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Mal'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'aus'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'derselben'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Umgebung'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'wiederholen'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Datei'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'fertig'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'ist'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Diese'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'sind'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'gedacht'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'nicht'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'denselben'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'unbegrenzt'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'zu'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'ihn'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'auf'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'viele'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'zu'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'verteilen'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'oder'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'ihn'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'wie'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'eine'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'permanente'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'einzubetten'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'Solche'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'zeigen'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'sich'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'als'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'oder'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'sein'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'kann'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'wenn'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'wie'?

Check warning on line 69 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L69

Did you really mean 'erwartet'?

Für Zuverlässigkeit sollten **`GET`-Anfragen aus einem Client-Netzwerk kommen**. Etwas Flexibilität gibt es, wenn sich deine IP einmal ändert (z. B. VPN trennen und erneut versuchen), aber starke Variation der Quell-IPs funktioniert in der Regel nicht.

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'sollten'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'aus'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'einem'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'kommen'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'Etwas'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'gibt'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'wenn'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'sich'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'deine'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'einmal'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'trennen'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'und'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'erneut'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'versuchen'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'aber'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'starke'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'funktioniert'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'Regel'?

Check warning on line 71 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L71

Did you really mean 'nicht'?

Die URL bleibt bis zu **24 Stunden** lang gültig oder bis das Objekt entfernt wird.

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'bleibt'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'zu'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'Stunden'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'oder'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'das'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'Objekt'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'entfernt'?

Check warning on line 73 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L73

Did you really mean 'wird'?

<Note>
Wenn du eine stabile URL, öffentliche Wiedergabe oder wiederholten Zugriff über die Zeit brauchst, speichere die Datei zuerst in **deinem eigenen Storage** und liefere sie von dort aus.

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'Wenn'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'du'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'eine'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'Wiedergabe'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'oder'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'wiederholten'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'Zugriff'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'Zeit'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'brauchst'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'speichere'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'Datei'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'zuerst'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'eigenen'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'und'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'liefere'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'sie'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'von'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'dort'?

Check warning on line 76 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L76

Did you really mean 'aus'?
</Note>

**Privacy: Link mit `DELETE` widerrufen**

Check warning on line 79 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L79

Did you really mean 'mit'?

Check warning on line 79 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L79

Did you really mean 'widerrufen'?

Sobald du die Datei abgeholt hast – oder wenn du sie nicht behalten willst – kannst du **`DELETE`** auf denselben `download_url` aufrufen. Für diesen Request ist kein Venice-API-Schlüssel nötig. Das ist optional, aber **bei datenschutzrelevanten Fällen empfohlen**, weil einige Proxies und Middleboxen außerhalb von Venice vollständige URLs loggen, und das Löschen des Links ist der einfachste Weg, das Zeitfenster der vorsignierten URL zu verkleinern.

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Sobald'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'du'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Datei'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'abgeholt'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'oder'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'wenn'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'du'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'sie'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'nicht'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'behalten'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'willst'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'kannst'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'auf'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'denselben'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'aufrufen'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'diesen'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'ist'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'kein'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Das'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'ist'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'aber'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'bei'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'datenschutzrelevanten'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'empfohlen'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'weil'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'einige'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'und'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Middleboxen'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'von'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'loggen'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'und'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'das'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'des'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'ist'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'einfachste'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Weg'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'das'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'Zeitfenster'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'vorsignierten'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'zu'?

Check warning on line 81 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L81

Did you really mean 'verkleinern'?

```bash
curl -X DELETE "$DOWNLOAD_URL"
```

**Flow:** `/video/retrieve` pollen bis `COMPLETED` → `GET` auf den `download_url` (bei Abbruch leicht retrien) → Datei dort speichern, wo du sie brauchst → optional `DELETE` auf den `download_url` → optional `/video/complete` aufrufen, falls du Queue-basiertes Cleanup nutzt.

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'auf'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'bei'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'Abbruch'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'leicht'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'retrien'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'Datei'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'dort'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'speichern'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'du'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'sie'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'brauchst'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'auf'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'aufrufen'?

Check warning on line 87 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L87

Did you really mean 'nutzt'?

## Schritt 2: Auf Fertigstellung pollen

Check warning on line 89 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L89

Did you really mean 'Schritt'?

Check warning on line 89 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L89

Did you really mean 'Auf'?

Check warning on line 89 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L89

Did you really mean 'Fertigstellung'?

**Request:**
```bash
Expand All @@ -96,17 +96,17 @@

{
"model": "wan-2.5-preview-text-to-video",
"queue_id": "123e4567-e89b-12d3-a456-426614174000"

Check warning on line 99 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L99

Did you really mean 'queue_id'?
}
```

**Die Antwort hängt vom Status ab:**

Check warning on line 103 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L103

Did you really mean 'Antwort'?

Check warning on line 103 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L103

Did you really mean 'vom'?

| Content-Type | Bedeutung | Aktion |

Check warning on line 105 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L105

Did you really mean 'Bedeutung'?

Check warning on line 105 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L105

Did you really mean 'Aktion'?
|--------------|---------|--------|
| `application/json` | Wird verarbeitet | 5 s warten, erneut pollen |

Check warning on line 107 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L107

Did you really mean 'Wird'?

Check warning on line 107 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L107

Did you really mean 'verarbeitet'?

Check warning on line 107 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L107

Did you really mean 'warten'?

Check warning on line 107 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L107

Did you really mean 'erneut'?
| `video/mp4` | Fertig | Response-Body ist die Videodatei |

Check warning on line 108 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L108

Did you really mean 'Fertig'?

Check warning on line 108 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L108

Did you really mean 'ist'?

Check warning on line 108 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L108

Did you really mean 'Videodatei'?
| `application/json` mit `"COMPLETED"` | Fertig, Video nicht inline | `GET` auf den `download_url` aus der Queue-Antwort |

Check warning on line 109 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L109

Did you really mean 'Fertig'?

Check warning on line 109 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L109

Did you really mean 'nicht'?

Check warning on line 109 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L109

Did you really mean 'auf'?

Check warning on line 109 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L109

Did you really mean 'aus'?

**Processing-Antwort (200, application/json):**
```json
Expand All @@ -117,17 +117,17 @@
}
```

Zeiten in Millisekunden. Nutze `average_execution_time` zur Abschätzung der verbleibenden Wartezeit.

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'Zeiten'?

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'Millisekunden'?

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'Nutze'?

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'zur'?

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'verbleibenden'?

Check warning on line 120 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L120

Did you really mean 'Wartezeit'?

**Complete-Antwort (200, video/mp4):**
Response-Body ist rohes Binär-Video. In Datei speichern.

Check warning on line 123 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L123

Did you really mean 'ist'?

Check warning on line 123 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L123

Did you really mean 'rohes'?

Check warning on line 123 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L123

Did you really mean 'Datei'?

Check warning on line 123 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L123

Did you really mean 'speichern'?

**Complete-Antwort (200, application/json mit `"COMPLETED"`):**
Für Modelle, die beim Queue-Eintrag eine `download_url` geliefert haben, liefert Retrieve immer JSON. Hol das Video per `GET download_url` (ohne Auth-Header). Siehe [Private Download-Links](#private-download-links) für Details, Retries und optional `DELETE`.

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'Modelle'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'beim'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'eine'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'geliefert'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'haben'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'liefert'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'immer'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'Hol'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'das'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'ohne'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'Siehe'?

Check warning on line 126 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L126

Did you really mean 'und'?

## Schritt 3: Cleanup (optional)

Check warning on line 128 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L128

Did you really mean 'Schritt'?

Entweder automatisch beim Abruf löschen:

Check warning on line 130 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L130

Did you really mean 'Entweder'?

Check warning on line 130 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L130

Did you really mean 'automatisch'?

Check warning on line 130 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L130

Did you really mean 'beim'?

Check warning on line 130 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L130

Did you really mean 'Abruf'?
```json
{
"model": "wan-2.5-preview-text-to-video",
Expand All @@ -136,7 +136,7 @@
}
```

Oder nach dem Speichern `/video/complete` aufrufen:

Check warning on line 139 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L139

Did you really mean 'nach'?

Check warning on line 139 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L139

Did you really mean 'dem'?

Check warning on line 139 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L139

Did you really mean 'Speichern'?

Check warning on line 139 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L139

Did you really mean 'aufrufen'?
```bash
POST https://api.venice.ai/api/v1/video/complete
Authorization: Bearer $VENICE_API_KEY
Expand All @@ -148,7 +148,7 @@
}
```

**Antwort (200):**

Check warning on line 151 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L151

Did you really mean 'Antwort'?
```json
{
"success": true
Expand All @@ -157,7 +157,7 @@

---

## Vollständiges Beispiel

Check warning on line 160 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L160

Did you really mean 'Beispiel'?

<CodeGroup>
```python Python
Expand All @@ -179,18 +179,18 @@
})
data = resp.json()
model, queue_id = data["model"], data["queue_id"]
download_url = data.get("download_url")

Check warning on line 182 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L182

Did you really mean 'download_url'?

# Poll
while True:
resp = requests.post(f"{BASE_URL}/video/retrieve", headers=HEADERS,
json={"model": model, "queue_id": queue_id})
if "video/mp4" in resp.headers.get("Content-Type", ""):
with open("output.mp4", "wb") as f:

Check warning on line 189 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L189

Did you really mean 'wb'?
f.write(resp.content)
break
if resp.json().get("status") == "COMPLETED" and download_url:

Check warning on line 192 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L192

Did you really mean 'download_url'?
with open("output.mp4", "wb") as f:

Check warning on line 193 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L193

Did you really mean 'wb'?
f.write(requests.get(download_url).content)
break
time.sleep(5)
Expand Down Expand Up @@ -251,41 +251,41 @@

### Queue-Request

| Parameter | Typ | Pflicht | Default | Beschreibung |

Check warning on line 254 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L254

Did you really mean 'Pflicht'?

Check warning on line 254 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L254

Did you really mean 'Beschreibung'?
|-----------|------|----------|---------|-------------|
| `model` | string | Ja | - | Modell-ID. `wan-2.5-preview-text-to-video` für Text-to-Video, `wan-2.5-preview-image-to-video` für Image-to-Video |
| `prompt` | string | Ja | - | Was generiert werden soll. Max. 2500 Zeichen |

Check warning on line 257 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L257

Did you really mean 'generiert'?

Check warning on line 257 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L257

Did you really mean 'werden'?

Check warning on line 257 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L257

Did you really mean 'soll'?

Check warning on line 257 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L257

Did you really mean 'Zeichen'?
| `negative_prompt` | string | Nein | `"low resolution, error, worst quality, low quality, defects"` | Was zu vermeiden ist |

Check warning on line 258 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L258

Did you really mean 'Nein'?

Check warning on line 258 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L258

Did you really mean 'zu'?

Check warning on line 258 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L258

Did you really mean 'vermeiden'?

Check warning on line 258 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L258

Did you really mean 'ist'?
| `duration` | string | Ja | - | `"5s"` oder `"10s"` |

Check warning on line 259 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L259

Did you really mean 'oder'?
| `resolution` | string | Nein | `"720p"` | `"480p"`, `"720p"` oder `"1080p"` |

Check warning on line 260 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L260

Did you really mean 'Nein'?

Check warning on line 260 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L260

Did you really mean 'oder'?
| `aspect_ratio` | string | Bedingt | - | Modellabhängig. Pflicht bei Modellen mit Aspect-Ratio-Optionen; weglassen bei Modellen ohne Aspect-Ratio-Auswahl |

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'Bedingt'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'Pflicht'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'bei'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'Modellen'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'mit'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'weglassen'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'bei'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'Modellen'?

Check warning on line 261 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L261

Did you really mean 'ohne'?
| `audio` | boolean | Bedingt | `true` (wenn unterstützt) | Nur für Modelle mit `supportsAudioConfig: true`; weglassen bei Modellen ohne Audio-Konfig |

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'Bedingt'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'wenn'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'Nur'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'Modelle'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'mit'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'weglassen'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'bei'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'Modellen'?

Check warning on line 262 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L262

Did you really mean 'ohne'?
| `image_url` | string | Nur für Image-to-Video | - | URL oder Base64-Data-URL des Quellbilds |

Check warning on line 263 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L263

Did you really mean 'Nur'?

Check warning on line 263 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L263

Did you really mean 'oder'?

Check warning on line 263 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L263

Did you really mean 'des'?

Check warning on line 263 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L263

Did you really mean 'Quellbilds'?
| `audio_url` | string | Bedingt | - | URL oder Base64-Data-URL eines Referenz-Audios für Modelle mit Audio-Input |

Check warning on line 264 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L264

Did you really mean 'Bedingt'?

Check warning on line 264 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L264

Did you really mean 'oder'?

Check warning on line 264 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L264

Did you really mean 'eines'?

Check warning on line 264 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L264

Did you really mean 'Modelle'?

Check warning on line 264 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L264

Did you really mean 'mit'?

Die Queue-Validierung ist modellspezifisch. Prüfe `/models?type=video` für die unterstützten Request-Felder pro Modell, bevor du `/video/queue` aufrufst.

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'ist'?

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'modellspezifisch'?

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'Modell'?

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'bevor'?

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'du'?

Check warning on line 266 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L266

Did you really mean 'aufrufst'?

### Quote-Request

| Parameter | Typ | Pflicht | Default | Beschreibung |

Check warning on line 270 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L270

Did you really mean 'Pflicht'?

Check warning on line 270 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L270

Did you really mean 'Beschreibung'?
|-----------|------|----------|---------|-------------|
| `model` | string | Ja | - | Modell-ID zum Bepreisen |

Check warning on line 272 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L272

Did you really mean 'zum'?

Check warning on line 272 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L272

Did you really mean 'Bepreisen'?
| `duration` | string | Ja | - | `"5s"` oder `"10s"` |

Check warning on line 273 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L273

Did you really mean 'oder'?
| `resolution` | string | Nein | `"720p"` | `"480p"`, `"720p"` oder `"1080p"` |

Check warning on line 274 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L274

Did you really mean 'Nein'?

Check warning on line 274 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L274

Did you really mean 'oder'?
| `aspect_ratio` | string | Bedingt | - | Angeben, wenn das Modell Aspect-Ratio-Auswahl unterstützt oder verlangt |

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'Bedingt'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'Angeben'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'wenn'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'das'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'Modell'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'oder'?

Check warning on line 275 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L275

Did you really mean 'verlangt'?
| `audio` | boolean | Bedingt | `true` (wenn unterstützt) | Nur gültig für Modelle mit `supportsAudioConfig: true` |

Check warning on line 276 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L276

Did you really mean 'Bedingt'?

Check warning on line 276 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L276

Did you really mean 'wenn'?

Check warning on line 276 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L276

Did you really mean 'Nur'?

Check warning on line 276 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L276

Did you really mean 'Modelle'?

Check warning on line 276 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L276

Did you really mean 'mit'?

### Retrieve-Request

| Parameter | Typ | Pflicht | Default | Beschreibung |

Check warning on line 280 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L280

Did you really mean 'Pflicht'?

Check warning on line 280 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L280

Did you really mean 'Beschreibung'?
|-----------|------|----------|---------|-------------|
| `model` | string | Ja | - | Aus der Queue-Antwort |
| `queue_id` | string | Ja | - | Aus der Queue-Antwort |
| `delete_media_on_completion` | boolean | Nein | `false` | Video nach erfolgreichem Abruf löschen |

Check warning on line 284 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L284

Did you really mean 'Nein'?

Check warning on line 284 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L284

Did you really mean 'nach'?

Check warning on line 284 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L284

Did you really mean 'erfolgreichem'?

Check warning on line 284 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L284

Did you really mean 'Abruf'?

### Complete-Request

| Parameter | Typ | Pflicht | Beschreibung |

Check warning on line 288 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L288

Did you really mean 'Pflicht'?

Check warning on line 288 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L288

Did you really mean 'Beschreibung'?
|-----------|------|----------|-------------|
| `model` | string | Ja | Aus der Queue-Antwort |
| `queue_id` | string | Ja | Aus der Queue-Antwort |
Expand All @@ -294,7 +294,7 @@

## Image-to-Video

Bei Image-to-Video-Modellen das Quellbild per `image_url` übergeben. Der Prompt beschreibt die gewünschte Bewegung, nicht den Bildinhalt.

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'Bei'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'das'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'Quellbild'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'beschreibt'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'Bewegung'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'nicht'?

Check warning on line 297 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L297

Did you really mean 'Bildinhalt'?

```json
{
Expand All @@ -305,7 +305,7 @@
}
```

Oder mit Base64:

Check warning on line 308 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L308

Did you really mean 'mit'?
```json
{
"model": "wan-2.5-preview-image-to-video",
Expand All @@ -319,7 +319,7 @@

## Preis-Quote

Exakte Kosten vor der Generierung. Nur die Pricing-Inputs senden (`model`, `duration` und optional `resolution`, `aspect_ratio`, `audio`):

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'Exakte'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'Kosten'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'vor'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'Generierung'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'Nur'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'senden'?

Check warning on line 322 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L322

Did you really mean 'und'?

**Request:**
```json
Expand All @@ -330,7 +330,7 @@
}
```

**Antwort:**

Check warning on line 333 in de/guides/media/video-generation.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/guides/media/video-generation.mdx#L333

Did you really mean 'Antwort'?
```json
{
"quote": 0.085
Expand All @@ -339,6 +339,20 @@

Das Quote ist in USD.

<Info>
**Quote-Parameter sind ausschließlich Preis-Inputs.** Felder, die Sie an `/video/quote` senden – darunter `aspect_ratio`, `audio` und `reference_video_total_duration` – dienen ausschließlich der Preisberechnung. Sie werden **nicht** an `/video/queue` weitergeleitet und haben keinen Einfluss auf das generierte Video. `aspect_ratio` an Quote zu senden ist auch bei Modellen zulässig (z. B. `seedance-2-0-image-to-video`), die `aspect_ratio` bei der Generierung ablehnen, da Image-to-Video-Modelle das Ausgabe-Seitenverhältnis aus dem Eingabebild ableiten.
</Info>

### Preisberechnung bei Reference-to-Video

Bei R2V-Modellen (z. B. Seedance 2.0 R2V) übergeben Sie `reference_video_total_duration` – die Gesamtdauer in Sekunden aller Referenz-Clips, die Sie einbinden möchten –, damit das Quote die Preisstufe „Input mit Video" und die Token-Formel `(input + output) × pixels` widerspiegelt. Lassen Sie den Wert weg, gibt das Quote stattdessen den Basiswert ohne Referenz zurück.

`reference_video_total_duration` wird ausschließlich von `/video/quote` erkannt. Es hat keine Auswirkung auf `/video/queue`, und ein Weglassen führt nicht zu einem Generierungsfehler.

### Stabile Preise anzeigen

Quotes sind zeitpunktbezogen und Preise können sich ändern. Wenn Sie in Ihrer App einen festen Preis anzeigen möchten, rufen Sie `/video/quote` einmal für jede von Ihnen unterstützte Parameterkombination auf und cachen Sie das Ergebnis in Ihrem eigenen Speicher – aktualisieren Sie den gecachten Wert dann nach einem Zeitplan (oder bei Preislisten-Aktualisierungen) durch erneutes Quoten. Es gibt keinen Endpoint für „gesperrte" oder „statische" Quotes.

---

## Fehler
Expand Down
6 changes: 6 additions & 0 deletions de/overview/pricing.mdx
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
---
title: API-Preise
description: "Preise der Venice API pro 1M Tokens für Text-, Bild-, Video-, Audio- und Embedding-Modelle sowie Credit-Kosten für Web-Suche, RPC-Aufrufe und weitere Dienste."

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'Preise'?

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'und'?

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'sowie'?

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'und'?

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'weitere'?

Check warning on line 3 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L3

Did you really mean 'Dienste'?
"og:title": "Pricing | Venice API Docs"
"og:description": "Erfahren Sie mehr über die Preise für die Venice API."

Check warning on line 5 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L5

Did you really mean 'Erfahren'?

Check warning on line 5 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L5

Did you really mean 'Sie'?

Check warning on line 5 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L5

Did you really mean 'mehr'?

Check warning on line 5 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L5

Did you really mean 'Preise'?
---

Preise pro 1M Tokens, sofern nicht anders angegeben. Alle Preise in USD. 1 Diem = $1/Tag Rechenleistung.

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'Preise'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'sofern'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'nicht'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'anders'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'angegeben'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'Alle'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'Preise'?

Check warning on line 8 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L8

Did you really mean 'Rechenleistung'?

<Info>
**API- vs. Consumer-Pläne.** Die Venice API wird **nutzungsbasiert (pay-per-use)** in USD-Credits (oder über gestaktes DIEM) abgerechnet. Sie ist getrennt von den monatlichen Abo-Plänen (Free, Pro, Max) der Venice Consumer-Web-App, deren Kontingente – etwa Bildanzahlen oder unbegrenzter Chat – ausschließlich für die Web-/Desktop-/Mobile-Apps gelten, **nicht** für die API-Nutzung. Alle API-Aufrufe werden unabhängig von Ihrem Consumer-Plan gegen Ihr API-Credit-Guthaben abgerechnet. Siehe [Pro-Nutzer](#pro-nutzer) unten für das einmalige Credit-Guthaben, das Pro-Abonnenten erhalten.

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'wird'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'oder'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'gestaktes'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'abgerechnet'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Sie'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'ist'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'getrennt'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'von'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'monatlichen'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'deren'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Kontingente'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'etwa'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Bildanzahlen'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'oder'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'unbegrenzter'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'gelten'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Alle'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'werden'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'von'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Ihrem'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'gegen'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Ihr'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'abgerechnet'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'Siehe'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'unten'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'das'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'einmalige'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'das'?

Check warning on line 11 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L11

Did you really mean 'erhalten'?
</Info>

## Textmodelle

Check warning on line 14 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L14

Did you really mean 'Textmodelle'?

### Chat Completions

Expand All @@ -15,25 +19,25 @@

| Model | ID | Input-Preis | Output-Preis | Cache Read | Cache Write | Context | Privacy |
|---|---|---|---|---|---|---|---|
| Aion 3.0 | `aion-labs-aion-3-0` | $3.75 | $7.50 | $0.94 | - | 128K | Anonymized |

Check warning on line 22 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L22

Did you really mean 'Aion'?

Check warning on line 22 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L22

Did you really mean 'Anonymized'?
| Aion 3.0 Mini | `aion-labs-aion-3-0-mini` | $0.88 | $1.75 | $0.23 | - | 128K | Anonymized |

Check warning on line 23 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L23

Did you really mean 'Aion'?

Check warning on line 23 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L23

Did you really mean 'Anonymized'?
| Claude Fable 5 | `claude-fable-5` | $12.00 | $60.00 | $1.20 | $15.00 | 1000K | Anonymized |

Check warning on line 24 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L24

Did you really mean 'Anonymized'?
| Claude Opus 4.5 | `claude-opus-4-5` | $6.00 | $30.00 | $0.60 | $7.50 | 198K | Anonymized |

Check warning on line 25 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L25

Did you really mean 'Anonymized'?
| Claude Opus 4.6 (Beta) | `claude-opus-4-6` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 26 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L26

Did you really mean 'Anonymized'?
| Claude Opus 4.7 | `claude-opus-4-7` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 27 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L27

Did you really mean 'Anonymized'?
| Claude Opus 4.8 | `claude-opus-4-8` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |

Check warning on line 28 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L28

Did you really mean 'Anonymized'?
| Claude Opus 4.8 Fast (Beta) | `claude-opus-4-8-fast` | $12.00 | $60.00 | $1.20 | $15.00 | 1000K | Anonymized |

Check warning on line 29 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L29

Did you really mean 'Anonymized'?
| Claude Sonnet 4.5 | `claude-sonnet-4-5` | $3.75 | $18.75 | $0.38 | $4.69 | 198K | Anonymized |

Check warning on line 30 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L30

Did you really mean 'Anonymized'?
| Claude Sonnet 4.6 (Beta) | `claude-sonnet-4-6` | $3.60 | $18.00 | $0.36 | $4.50 | 1000K | Anonymized |

Check warning on line 31 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L31

Did you really mean 'Anonymized'?
| Claude Sonnet 5 (Beta) | `claude-sonnet-5` | $3.00 | $15.00 | $0.30 | $3.75 | 1000K | Anonymized |

Check warning on line 32 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L32

Did you really mean 'Anonymized'?
| DeepSeek V3.2 | `deepseek-v3.2` | $0.33 | $0.48 | $0.16 | - | 160K | Private |
| DeepSeek V4 Flash | `deepseek-v4-flash` | $0.14 | $0.28 | $0.03 | - | 1000K | Anonymized |

Check warning on line 34 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L34

Did you really mean 'Anonymized'?
| DeepSeek V4 Flash (Beta) | `e2ee-deepseek-v4-flash` | $0.18 | $0.37 | $0.04 | - | 1000K | E2EE · Private |
| DeepSeek V4 Pro | `deepseek-v4-pro` | $1.65 | $3.30 | $0.33 | - | 1000K | Anonymized |

Check warning on line 36 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L36

Did you really mean 'Anonymized'?
| Gemini 3 Flash Preview | `gemini-3-flash-preview` | $0.70 | $3.75 | $0.07 | - | 256K | Anonymized |

Check warning on line 37 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L37

Did you really mean 'Anonymized'?
| Gemini 3.1 Pro Preview | `gemini-3-1-pro-preview` | $2.50 | $15.00 | $0.50 | $0.50 | 1000K | Anonymized |

Check warning on line 38 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L38

Did you really mean 'Anonymized'?
| ↳ >200K Context | | $5.00 | $22.50 | $0.50 | $0.50 | | |
| Gemini 3.5 Flash | `gemini-3-5-flash` | $1.55 | $9.45 | $0.15 | $0.09 | 1000K | Anonymized |

Check warning on line 40 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L40

Did you really mean 'Anonymized'?
| Gemma 3 27B (Beta) | `e2ee-gemma-3-27b-p` | $0.14 | $0.50 | - | - | 40K | E2EE · Private |
| Gemma 4 26B A4B Uncensored (Beta) | `e2ee-gemma-4-26b-a4b-uncensored-p` | $0.19 | $0.88 | - | - | 64K | E2EE · Private |
| Gemma 4 31B Instruct (Beta) | `e2ee-gemma-4-31b` | $0.14 | $0.43 | $0.03 | - | 32K | E2EE · Private |
Expand All @@ -44,35 +48,35 @@
| GLM 4.7 Flash | `zai-org-glm-4.7-flash` | $0.13 | $0.50 | - | - | 128K | Private |
| GLM 4.7 Flash Heretic | `olafangensan-glm-4.7-flash-heretic` | $0.07 | $0.40 | $0.04 | - | 200K | Private |
| GLM 5 | `zai-org-glm-5` | $1.00 | $3.20 | $0.20 | - | 198K | Private |
| GLM 5 Turbo | `z-ai-glm-5-turbo` | $1.20 | $4.00 | $0.24 | - | 200K | Anonymized |

Check warning on line 51 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L51

Did you really mean 'Anonymized'?
| GLM 5.1 (Beta) | `zai-org-glm-5-1` | $1.54 | $4.84 | $0.29 | - | 200K | Private |
| GLM 5.1 (Beta) | `e2ee-glm-5-1` | $1.10 | $4.15 | - | - | 200K | E2EE · Private |
| GLM 5.2 (Beta) | `zai-org-glm-5-2` | $1.40 | $4.40 | $0.26 | - | 1000K | Private |
| GLM 5.2 (Beta) | `e2ee-glm-5-2-p` | $1.75 | $5.75 | - | - | 524K | E2EE · Private |
| GLM 5V Turbo (Beta) | `z-ai-glm-5v-turbo` | $1.50 | $5.00 | $0.30 | - | 200K | Anonymized |

Check warning on line 56 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L56

Did you really mean 'Anonymized'?
| Google Gemma 3 27B Instruct | `google-gemma-3-27b-it` | $0.12 | $0.20 | - | - | 198K | Private |
| Google Gemma 4 26B A4B Instruct | `google-gemma-4-26b-a4b-it` | $0.13 | $0.40 | $0.05 | - | 256K | Private |
| Google Gemma 4 31B Instruct | `google-gemma-4-31b-it` | $0.12 | $0.36 | $0.09 | - | 256K | Private |
| GPT OSS 120B (Beta) | `e2ee-gpt-oss-120b-p` | $0.13 | $0.65 | - | - | 128K | E2EE · Private |
| GPT OSS 20B (Beta) | `e2ee-gpt-oss-20b-p` | $0.05 | $0.19 | - | - | 128K | E2EE · Private |
| GPT-4o | `openai-gpt-4o-2024-11-20` | $3.13 | $12.50 | - | - | 128K | Anonymized |

Check warning on line 62 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L62

Did you really mean 'Anonymized'?
| GPT-4o Mini | `openai-gpt-4o-mini-2024-07-18` | $0.19 | $0.75 | $0.09 | - | 128K | Anonymized |

Check warning on line 63 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L63

Did you really mean 'Anonymized'?
| GPT-5.2 | `openai-gpt-52` | $2.19 | $17.50 | $0.22 | - | 256K | Anonymized |

Check warning on line 64 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L64

Did you really mean 'Anonymized'?
| GPT-5.2 Codex | `openai-gpt-52-codex` | $2.19 | $17.50 | $0.22 | - | 256K | Anonymized |

Check warning on line 65 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L65

Did you really mean 'Anonymized'?
| GPT-5.3 Codex (Beta) | `openai-gpt-53-codex` | $2.19 | $17.50 | $0.22 | - | 400K | Anonymized |

Check warning on line 66 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L66

Did you really mean 'Anonymized'?
| GPT-5.4 (Beta) | `openai-gpt-54` | $3.13 | $18.80 | $0.31 | - | 1000K | Anonymized |

Check warning on line 67 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L67

Did you really mean 'Anonymized'?
| GPT-5.4 Mini (Beta) | `openai-gpt-54-mini` | $0.94 | $5.63 | $0.09 | - | 400K | Anonymized |

Check warning on line 68 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L68

Did you really mean 'Anonymized'?
| GPT-5.4 Pro (Beta) | `openai-gpt-54-pro` | $37.50 | $225.00 | - | - | 1000K | Anonymized |

Check warning on line 69 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L69

Did you really mean 'Anonymized'?
| ↳ >272K Context | | $75.00 | $337.50 | - | - | | |
| GPT-5.5 (Beta) | `openai-gpt-55` | $6.25 | $37.50 | $0.63 | - | 1000K | Anonymized |

Check warning on line 71 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L71

Did you really mean 'Anonymized'?
| ↳ >272K Context | | $12.50 | $56.25 | $1.25 | - | | |
| GPT-5.5 Pro (Beta) | `openai-gpt-55-pro` | $37.50 | $225.00 | - | - | 1000K | Anonymized |

Check warning on line 73 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L73

Did you really mean 'Anonymized'?
| GPT-5.6 Luna (Beta) | `openai-gpt-56-luna` | $1.25 | $7.50 | $0.13 | $1.56 | 1000K | Anonymized |

Check warning on line 74 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L74

Did you really mean 'Anonymized'?
| GPT-5.6 Luna Pro (Beta) | `openai-gpt-56-luna-pro` | $1.25 | $7.50 | $0.13 | $1.56 | 1000K | Anonymized |

Check warning on line 75 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L75

Did you really mean 'Anonymized'?
| GPT-5.6 Sol (Beta) | `openai-gpt-56-sol` | $6.25 | $37.50 | $0.63 | $7.81 | 1000K | Anonymized |

Check warning on line 76 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L76

Did you really mean 'Anonymized'?
| GPT-5.6 Sol Pro (Beta) | `openai-gpt-56-sol-pro` | $6.25 | $37.50 | $0.63 | $7.81 | 1000K | Anonymized |

Check warning on line 77 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L77

Did you really mean 'Anonymized'?
| GPT-5.6 Terra (Beta) | `openai-gpt-56-terra` | $3.13 | $18.75 | $0.31 | $3.91 | 1000K | Anonymized |

Check warning on line 78 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L78

Did you really mean 'Anonymized'?
| GPT-5.6 Terra Pro (Beta) | `openai-gpt-56-terra-pro` | $3.13 | $18.75 | $0.31 | $3.91 | 1000K | Anonymized |

Check warning on line 79 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L79

Did you really mean 'Anonymized'?
| Grok 4.20 | `grok-4-20` | $1.42 | $2.83 | $0.23 | - | 2000K | Private |
| ↳ >200K Context | | $2.83 | $5.67 | $0.45 | - | | |
| Grok 4.20 Multi-Agent | `grok-4-20-multi-agent` | $1.42 | $2.83 | $0.23 | - | 2000K | Private |
Expand All @@ -84,37 +88,37 @@
| Grok Build 0.1 (Beta) | `grok-build-0-1` | $1.00 | $2.00 | $0.20 | - | 256K | Private |
| ↳ >200K Context | | $2.00 | $4.00 | $0.40 | - | | |
| Hermes 3 Llama 3.1 405b | `hermes-3-llama-3.1-405b` | $1.10 | $3.00 | - | - | 128K | Private |
| Kimi K2.5 | `kimi-k2-5` | $0.56 | $3.50 | $0.22 | - | 256K | Private |

Check warning on line 91 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L91

Did you really mean 'Kimi'?
| Kimi K2.6 | `kimi-k2-6` | $0.75 | $3.50 | $0.16 | - | 256K | Private |

Check warning on line 92 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L92

Did you really mean 'Kimi'?
| Kimi K2.7 Code (Beta) | `kimi-k2-7-code` | $0.75 | $3.50 | $0.16 | - | 256K | Private |

Check warning on line 93 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L93

Did you really mean 'Kimi'?
| Llama 3.2 3B | `llama-3.2-3b` | $0.15 | $0.60 | - | - | 128K | Private |
| Llama 3.3 70B | `llama-3.3-70b` | $0.70 | $2.80 | - | - | 128K | Private |
| Mercury 2 (Beta) | `mercury-2` | $0.31 | $0.94 | $0.03 | - | 128K | Anonymized |

Check warning on line 96 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L96

Did you really mean 'Anonymized'?
| MiMo-V2.5 | `xiaomi-mimo-v2-5` | $0.14 | $0.28 | $0.05 | - | 1000K | Private |
| MiniMax M2.5 | `minimax-m25` | $0.27 | $0.95 | $0.03 | - | 198K | Private |
| MiniMax M2.7 | `minimax-m27` | $0.38 | $1.50 | $0.07 | - | 198K | Private |
| MiniMax M3 Preview (Beta) | `minimax-m3-preview` | $0.30 | $1.20 | $0.06 | - | 524K | Private |
| Mistral Small 3.2 24B Instruct | `mistral-small-3-2-24b-instruct` | $0.09 | $0.25 | - | - | 256K | Private |
| Mistral Small 4 (Beta) | `mistral-small-2603` | $0.19 | $0.75 | - | - | 256K | Private |
| Nemotron Cascade 2 30B A3B (Beta) | `nvidia-nemotron-cascade-2-30b-a3b` | $0.14 | $0.80 | - | - | 256K | Private |

Check warning on line 103 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L103

Did you really mean 'Nemotron'?
| NVIDIA Nemotron 3 Nano 30B (Beta) | `nvidia-nemotron-3-nano-30b-a3b` | $0.07 | $0.30 | - | - | 128K | Private |

Check warning on line 104 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L104

Did you really mean 'Nemotron'?

Check warning on line 104 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L104

Did you really mean 'Nano'?
| NVIDIA Nemotron 3 Ultra | `nvidia-nemotron-3-ultra-550b-a55b` | $0.63 | $3.13 | $0.19 | - | 256K | Private |

Check warning on line 105 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L105

Did you really mean 'Nemotron'?
| OpenAI GPT OSS 120B | `openai-gpt-oss-120b` | $0.07 | $0.30 | - | - | 128K | Private |
| Qwen 2.5 7B (Beta) | `e2ee-qwen-2-5-7b-p` | $0.05 | $0.13 | - | - | 32K | E2EE · Private |

Check warning on line 107 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L107

Did you really mean 'Qwen'?
| Qwen 3 235B A22B Instruct 2507 | `qwen3-235b-a22b-instruct-2507` | $0.15 | $0.75 | - | - | 128K | Private |

Check warning on line 108 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L108

Did you really mean 'Qwen'?
| Qwen 3 235B A22B Thinking 2507 | `qwen3-235b-a22b-thinking-2507` | $0.45 | $3.50 | - | - | 128K | Private |

Check warning on line 109 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L109

Did you really mean 'Qwen'?
| Qwen 3 Coder 480B Turbo (Beta) | `qwen3-coder-480b-a35b-instruct-turbo` | $0.35 | $1.50 | $0.04 | - | 256K | Private |

Check warning on line 110 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L110

Did you really mean 'Qwen'?
| Qwen 3 Next 80b | `qwen3-next-80b` | $0.35 | $1.90 | - | - | 256K | Private |

Check warning on line 111 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L111

Did you really mean 'Qwen'?
| Qwen 3.5 35B A3B (Beta) | `qwen3-5-35b-a3b` | $0.31 | $1.25 | $0.16 | - | 256K | Private |

Check warning on line 112 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L112

Did you really mean 'Qwen'?
| Qwen 3.5 397B | `qwen3-5-397b-a17b` | $0.75 | $4.50 | - | - | 128K | Anonymized |

Check warning on line 113 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L113

Did you really mean 'Qwen'?

Check warning on line 113 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L113

Did you really mean 'Anonymized'?
| Qwen 3.5 9B | `qwen3-5-9b` | $0.10 | $0.15 | - | - | 256K | Private |

Check warning on line 114 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L114

Did you really mean 'Qwen'?
| Qwen 3.6 27B | `qwen3-6-27b` | $0.33 | $3.25 | - | - | 256K | Private |

Check warning on line 115 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L115

Did you really mean 'Qwen'?
| Qwen 3.6 27B FP8 (Beta) | `e2ee-qwen3-6-27b` | $0.35 | $3.46 | $0.17 | - | 256K | E2EE · Private |

Check warning on line 116 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L116

Did you really mean 'Qwen'?
| Qwen 3.6 35B A3B FP8 (Beta) | `e2ee-qwen3-6-35b-a3b` | $0.18 | $1.18 | $0.06 | - | 32K | E2EE · Private |

Check warning on line 117 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L117

Did you really mean 'Qwen'?
| Qwen 3.6 Plus Uncensored (Beta) | `qwen-3-6-plus` | $0.63 | $3.75 | $0.06 | $0.78 | 1000K | Anonymized |

Check warning on line 118 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L118

Did you really mean 'Qwen'?

Check warning on line 118 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L118

Did you really mean 'Anonymized'?
| ↳ >256K Context | | $2.50 | $7.50 | $0.06 | $0.78 | | |
| Qwen 3.7 Max (Beta) | `qwen-3-7-max` | $2.70 | $8.05 | $0.27 | $3.35 | 1000K | Anonymized |

Check warning on line 120 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L120

Did you really mean 'Qwen'?

Check warning on line 120 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L120

Did you really mean 'Anonymized'?
| Qwen 3.7 Plus (Beta) | `qwen-3-7-plus` | $0.50 | $2.00 | $0.05 | $0.63 | 1000K | Anonymized |

Check warning on line 121 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L121

Did you really mean 'Qwen'?

Check warning on line 121 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L121

Did you really mean 'Anonymized'?
| ↳ >256K Context | | $1.50 | $6.00 | $0.15 | $1.88 | | |
| Qwen3 30B A3B (Beta) | `e2ee-qwen3-30b-a3b-p` | $0.19 | $0.69 | - | - | 256K | E2EE · Private |
| Qwen3 VL 235B | `qwen3-vl-235b-a22b` | $0.21 | $1.90 | $0.10 | - | 128K | Private |
Expand All @@ -126,7 +130,7 @@

</div>

*Preise pro 1M Tokens. [Alle Modelle ansehen →](/models/text)*

Check warning on line 133 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L133

Did you really mean 'Preise'?

### Embeddings

Expand All @@ -136,71 +140,71 @@
|---|---|---|---|---|
| BGE-EN-ICL | `text-embedding-bge-en-icl` | $0.01 | $0.01 | Private |
| BGE-M3 | `text-embedding-bge-m3` | $0.15 | $0.60 | Private |
| Gemini Embedding 2 Preview | `gemini-embedding-2-preview` | $0.25 | $0.25 | Anonymized |

Check warning on line 143 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L143

Did you really mean 'Anonymized'?
| Multilingual E5 Large Instruct | `text-embedding-multilingual-e5-large-instruct` | $0.01 | $0.01 | Private |
| Nemotron Embed VL 1B v2 | `text-embedding-nemotron-embed-vl-1b-v2` | $0.01 | $0.01 | Private |

Check warning on line 145 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L145

Did you really mean 'Nemotron'?
| Qwen3 Embedding 0.6B | `text-embedding-qwen3-0-6b` | $0.01 | $0.01 | Private |
| Qwen3 Embedding 8B | `text-embedding-qwen3-8b` | $0.01 | $0.01 | Private |
| Text Embedding 3 Large | `text-embedding-3-large` | $0.16 | $0.16 | Anonymized |

Check warning on line 148 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L148

Did you really mean 'Anonymized'?
| Text Embedding 3 Small | `text-embedding-3-small` | $0.03 | $0.03 | Anonymized |

Check warning on line 149 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L149

Did you really mean 'Anonymized'?

</div>

## Medienmodelle

Check warning on line 153 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L153

Did you really mean 'Medienmodelle'?

### Bildgenerierung

Check warning on line 155 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L155

Did you really mean 'Bildgenerierung'?

<div id="pricing-image-placeholder">

#### Generierung

Check warning on line 159 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L159

Did you really mean 'Generierung'?

| Model | ID | Preis | Privacy |

Check warning on line 161 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L161

Did you really mean 'Preis'?
|---|---|---|---|
| Recraft V4 Pro | `recraft-v4-pro` | Pro Bild: $0.29 | Anonymized |

Check warning on line 163 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L163

Did you really mean 'Recraft'?

Check warning on line 163 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L163

Did you really mean 'Bild'?

Check warning on line 163 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L163

Did you really mean 'Anonymized'?
| GPT Image 2 | `gpt-image-2` | 1K: $0.27, 2K: $0.51, 4K: $0.84 | Anonymized |

Check warning on line 164 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L164

Did you really mean 'Anonymized'?
| GPT Image 1.5 | `gpt-image-1-5` | Pro Bild: $0.26 | Anonymized |

Check warning on line 165 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L165

Did you really mean 'Bild'?

Check warning on line 165 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L165

Did you really mean 'Anonymized'?
| Nano Banana Pro | `nano-banana-pro` | 1K: $0.18, 2K: $0.23, 4K: $0.35 | Anonymized |

Check warning on line 166 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L166

Did you really mean 'Nano'?

Check warning on line 166 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L166

Did you really mean 'Anonymized'?
| Luma Uni-1 Max | `luma-uni-1-max` | Pro Bild: $0.12 | Anonymized |

Check warning on line 167 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L167

Did you really mean 'Luma'?

Check warning on line 167 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L167

Did you really mean 'Bild'?

Check warning on line 167 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L167

Did you really mean 'Anonymized'?
| Nano Banana 2 | `nano-banana-2` | 1K: $0.10, 2K: $0.14, 4K: $0.19 | Anonymized |

Check warning on line 168 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L168

Did you really mean 'Nano'?

Check warning on line 168 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L168

Did you really mean 'Anonymized'?
| Qwen Image 2 Pro | `qwen-image-2-pro` | Pro Bild: $0.10 | Anonymized |

Check warning on line 169 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L169

Did you really mean 'Qwen'?

Check warning on line 169 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L169

Did you really mean 'Bild'?

Check warning on line 169 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L169

Did you really mean 'Anonymized'?
| Wan 2.7 Pro | `wan-2-7-pro-text-to-image` | Pro Bild: $0.09 | Anonymized |

Check warning on line 170 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L170

Did you really mean 'Bild'?

Check warning on line 170 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L170

Did you really mean 'Anonymized'?
| Flux 2 Max | `flux-2-max` | Pro Bild: $0.09 | Anonymized |

Check warning on line 171 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L171

Did you really mean 'Bild'?

Check warning on line 171 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L171

Did you really mean 'Anonymized'?
| Grok Imagine High Quality (SOTA) | `grok-imagine-image-quality` | 1K: $0.06, 2K: $0.09 | Private |
| Ideogram V4 | `ideogram-v4` | Pro Bild: $0.06 | Anonymized |

Check warning on line 173 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L173

Did you really mean 'Bild'?

Check warning on line 173 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L173

Did you really mean 'Anonymized'?
| ImagineArt 1.5 Pro | `imagineart-1.5-pro` | Pro Bild: $0.06 | Anonymized |

Check warning on line 174 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L174

Did you really mean 'Bild'?

Check warning on line 174 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L174

Did you really mean 'Anonymized'?
| Nano Banana 2 Lite | `nano-banana-2-lite` | Pro Bild: $0.06 | Anonymized |

Check warning on line 175 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L175

Did you really mean 'Nano'?

Check warning on line 175 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L175

Did you really mean 'Bild'?

Check warning on line 175 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L175

Did you really mean 'Anonymized'?
| Seedream V5 Pro | `seedream-v5-pro` | 1K: $0.06, 2K: $0.11 | Anonymized |

Check warning on line 176 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L176

Did you really mean 'Seedream'?

Check warning on line 176 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L176

Did you really mean 'Anonymized'?
| Luma Uni-1 | `luma-uni-1` | Pro Bild: $0.05 | Anonymized |

Check warning on line 177 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L177

Did you really mean 'Luma'?

Check warning on line 177 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L177

Did you really mean 'Bild'?

Check warning on line 177 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L177

Did you really mean 'Anonymized'?
| Qwen Image 2 | `qwen-image-2` | Pro Bild: $0.05 | Anonymized |

Check warning on line 178 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L178

Did you really mean 'Qwen'?

Check warning on line 178 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L178

Did you really mean 'Bild'?

Check warning on line 178 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L178

Did you really mean 'Anonymized'?
| Recraft V4 | `recraft-v4` | Pro Bild: $0.05 | Anonymized |

Check warning on line 179 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L179

Did you really mean 'Recraft'?

Check warning on line 179 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L179

Did you really mean 'Bild'?

Check warning on line 179 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L179

Did you really mean 'Anonymized'?
| Seedream V4.5 | `seedream-v4` | Pro Bild: $0.05 | Anonymized |

Check warning on line 180 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L180

Did you really mean 'Seedream'?

Check warning on line 180 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L180

Did you really mean 'Bild'?

Check warning on line 180 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L180

Did you really mean 'Anonymized'?
| Seedream V5 Lite | `seedream-v5-lite` | Pro Bild: $0.05 | Anonymized |

Check warning on line 181 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L181

Did you really mean 'Seedream'?

Check warning on line 181 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L181

Did you really mean 'Bild'?

Check warning on line 181 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L181

Did you really mean 'Anonymized'?
| Krea 2 Turbo | `krea-2-turbo` | 1K: $0.04, 2K: $0.06 | Private |

Check warning on line 182 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L182

Did you really mean 'Krea'?
| Wan 2.7 | `wan-2-7-text-to-image` | Pro Bild: $0.04 | Anonymized |

Check warning on line 183 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L183

Did you really mean 'Bild'?

Check warning on line 183 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L183

Did you really mean 'Anonymized'?
| Background Remover | `bria-bg-remover` | Pro Bild: $0.03 | Anonymized |

Check warning on line 184 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L184

Did you really mean 'Bild'?

Check warning on line 184 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L184

Did you really mean 'Anonymized'?
| Flux 2 Pro | `flux-2-pro` | Pro Bild: $0.03 | Anonymized |

Check warning on line 185 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L185

Did you really mean 'Bild'?

Check warning on line 185 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L185

Did you really mean 'Anonymized'?
| Grok Imagine | `grok-imagine-image` | 1K: $0.03, 2K: $0.04 | Private |
| Qwen Image | `qwen-image` | Pro Bild: $0.03 | Anonymized |

Check warning on line 187 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L187

Did you really mean 'Qwen'?

Check warning on line 187 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L187

Did you really mean 'Bild'?

Check warning on line 187 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L187

Did you really mean 'Anonymized'?
| Anime (WAI) | `wai-Illustrious` | Pro Bild: $0.01 | Private |

Check warning on line 188 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L188

Did you really mean 'Bild'?
| Chroma | `chroma` | Pro Bild: $0.01 | Private |

Check warning on line 189 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L189

Did you really mean 'Bild'?
| Lustify SDXL | `lustify-sdxl` | Pro Bild: $0.01 | Private |

Check warning on line 190 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L190

Did you really mean 'Lustify'?

Check warning on line 190 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L190

Did you really mean 'Bild'?
| Lustify v7 | `lustify-v7` | Pro Bild: $0.01 | Private |

Check warning on line 191 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L191

Did you really mean 'Lustify'?

Check warning on line 191 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L191

Did you really mean 'Bild'?
| Lustify v8 | `lustify-v8` | Pro Bild: $0.01 | Private |

Check warning on line 192 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L192

Did you really mean 'Lustify'?

Check warning on line 192 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L192

Did you really mean 'Bild'?
| Venice SD35 | `venice-sd35` | Pro Bild: $0.01 | Private |

Check warning on line 193 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L193

Did you really mean 'Bild'?
| Z-Image Turbo | `z-image-turbo` | Pro Bild: $0.01 | Private |

Check warning on line 194 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L194

Did you really mean 'Bild'?
| Hunyuan Image 3.0 (Beta) | `hunyuan-image-v3` | Pro Bild: $0.09 | Private |

Check warning on line 195 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L195

Did you really mean 'Hunyuan'?

Check warning on line 195 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L195

Did you really mean 'Bild'?
| Krea v2 Large (Beta) | `krea-v2-large` | Pro Bild: $0.07 | Anonymized |

Check warning on line 196 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L196

Did you really mean 'Krea'?

Check warning on line 196 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L196

Did you really mean 'Bild'?

Check warning on line 196 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L196

Did you really mean 'Anonymized'?
| Krea v2 Medium (Beta) | `krea-v2-medium` | Pro Bild: $0.04 | Anonymized |

Check warning on line 197 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L197

Did you really mean 'Krea'?

Check warning on line 197 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L197

Did you really mean 'Bild'?

Check warning on line 197 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L197

Did you really mean 'Anonymized'?

#### Upscaling

Check warning on line 199 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L199

Did you really mean 'Upscaling'?

| Model | ID | 2x Upscale | 4x Upscale |
|---|---|---|---|
| Image Upscaler | `upscaler` | $0.02 | $0.08 |

Check warning on line 203 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L203

Did you really mean 'Upscaler'?

#### Bearbeitung

Check warning on line 205 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L205

Did you really mean 'Bearbeitung'?

| Model | ID | Pro Bearbeitung | Zusätzliches Eingabebild |

Check warning on line 207 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L207

Did you really mean 'Bearbeitung'?

Check warning on line 207 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L207

Did you really mean 'Eingabebild'?
|---|---|---|---|
| FireRed Edit | `firered-image-edit` | $0.04 | - |
| Flux 2 Max | `flux-2-max-edit` | $0.12 | $0.03 |
Expand All @@ -208,21 +212,21 @@
| GPT Image 2 | `gpt-image-2-edit` | $0.34 | $0.0092 |
| Grok Imagine | `grok-imagine-edit` | $0.03 | $0.0023 |
| Grok Imagine High Quality | `grok-imagine-quality-edit` | $0.06 | $0.01 |
| Luma Uni-1 | `luma-uni-1-edit` | $0.06 | - |

Check warning on line 215 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L215

Did you really mean 'Luma'?
| Luma Uni-1 Max | `luma-uni-1-max-edit` | $0.13 | - |

Check warning on line 216 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L216

Did you really mean 'Luma'?
| Nano Banana 2 | `nano-banana-2-edit` | $0.10 | - |

Check warning on line 217 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L217

Did you really mean 'Nano'?
| Nano Banana 2 Lite | `nano-banana-2-lite-edit` | $0.06 | - |

Check warning on line 218 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L218

Did you really mean 'Nano'?
| Nano Banana Pro | `nano-banana-pro-edit` | $0.18 | - |

Check warning on line 219 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L219

Did you really mean 'Nano'?
| Qwen Edit Uncensored | `qwen-edit-uncensored` | $0.04 | - |

Check warning on line 220 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L220

Did you really mean 'Qwen'?
| Qwen Image 2 | `qwen-image-2-edit` | $0.05 | - |

Check warning on line 221 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L221

Did you really mean 'Qwen'?
| Qwen Image 2 Pro | `qwen-image-2-pro-edit` | $0.10 | - |

Check warning on line 222 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L222

Did you really mean 'Qwen'?
| Seedream V4.5 | `seedream-v4-edit` | $0.05 | - |

Check warning on line 223 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L223

Did you really mean 'Seedream'?
| Seedream V5 Lite | `seedream-v5-lite-edit` | $0.05 | - |

Check warning on line 224 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L224

Did you really mean 'Seedream'?
| Seedream V5 Pro | `seedream-v5-pro-edit` | $0.11 | $0.0035 |

Check warning on line 225 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L225

Did you really mean 'Seedream'?
| Wan 2.7 Pro Edit | `wan-2-7-pro-edit` | $0.09 | - |
| Qwen Image | `qwen-image` | $0.04 | - |

Check warning on line 227 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L227

Did you really mean 'Qwen'?

> **Bearbeitung mit mehreren Eingabebildern:** Der Preis unter **Pro Bearbeitung** enthält das erste Eingabebild. Modelle, die einen Preis für **Zusätzliches Eingabebild** angeben, berechnen diese Gebühr für jedes weitere Eingabebild ab dem zweiten. Beispiel: Eine Bearbeitung mit 3 Eingabebildern auf einem Modell mit $0.11 pro Bearbeitung und $0.0035 Gebühr pro zusätzlichem Bild kostet $0.11 + 2 × $0.0035 = $0.117.

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Bearbeitung'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'mit'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'mehreren'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eingabebildern'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Preis'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'unter'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Bearbeitung'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'das'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'erste'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eingabebild'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Modelle'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'einen'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Preis'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eingabebild'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'angeben'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'berechnen'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'diese'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'jedes'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'weitere'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eingabebild'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'dem'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'zweiten'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Beispiel'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eine'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Bearbeitung'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'mit'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Eingabebildern'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'auf'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'einem'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Modell'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'mit'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Bearbeitung'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'und'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'Bild'?

Check warning on line 229 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L229

Did you really mean 'kostet'?

</div>

Expand All @@ -232,29 +236,29 @@

#### Text-to-Speech

| Model | ID | Pro 1M Zeichen | Privacy |

Check warning on line 239 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L239

Did you really mean 'Zeichen'?
|---|---|---|---|
| Chatterbox HD (Resemble AI) | `tts-chatterbox-hd` | $50.00 | Private |
| ElevenLabs Turbo v2.5 | `tts-elevenlabs-turbo-v2-5` | $62.50 | Anonymized |

Check warning on line 242 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L242

Did you really mean 'Anonymized'?
| Gemini 3.1 Flash TTS | `tts-gemini-3-1-flash` | $187.50 | Anonymized |

Check warning on line 243 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L243

Did you really mean 'Anonymized'?
| Gradium TTS | `tts-gradium-v1` | $47.50 | Anonymized |

Check warning on line 244 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L244

Did you really mean 'Gradium'?

Check warning on line 244 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L244

Did you really mean 'Anonymized'?
| Inworld TTS-1.5 Max | `tts-inworld-1-5-max` | $12.50 | Anonymized |

Check warning on line 245 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L245

Did you really mean 'Inworld'?

Check warning on line 245 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L245

Did you really mean 'Anonymized'?
| Kokoro Text to Speech | `tts-kokoro` | $3.50 | Private |

Check warning on line 246 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L246

Did you really mean 'Kokoro'?
| MiniMax Speech-02 HD | `tts-minimax-speech-02-hd` | $125.00 | Anonymized |

Check warning on line 247 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L247

Did you really mean 'Anonymized'?
| Orpheus TTS | `tts-orpheus` | $62.50 | Private |
| Qwen 3 TTS 0.6B | `tts-qwen3-0-6b` | $87.50 | Private |

Check warning on line 249 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L249

Did you really mean 'Qwen'?
| Qwen 3 TTS 1.7B | `tts-qwen3-1-7b` | $112.50 | Private |

Check warning on line 250 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L250

Did you really mean 'Qwen'?
| xAI TTS v1 | `tts-xai-v1` | $18.75 | Anonymized |

Check warning on line 251 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L251

Did you really mean 'Anonymized'?

#### Speech-to-Text

| Model | ID | Pro Audio-Sekunde | Privacy |
|---|---|---|---|
| ElevenLabs Scribe V2 | `elevenlabs/scribe-v2` | $0.0002 | Anonymized |

Check warning on line 257 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L257

Did you really mean 'Anonymized'?
| Parakeet ASR | `nvidia/parakeet-tdt-0.6b-v3` | $0.0001 | Private |
| Whisper Large V3 | `openai/whisper-large-v3` | $0.0001 | Private |
| Wizper (Whisper v3) | `fal-ai/wizper` | $0.0001 | Private |

Check warning on line 260 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L260

Did you really mean 'Wizper'?
| xAI Speech to Text v1 | `stt-xai-v1` | $0.0000 | Anonymized |

Check warning on line 261 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L261

Did you really mean 'Anonymized'?

</div>

Expand All @@ -262,54 +266,54 @@

<div id="pricing-music-placeholder">

#### Song-Generierung (nach Dauer)

Check warning on line 269 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L269

Did you really mean 'nach'?

Check warning on line 269 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L269

Did you really mean 'Dauer'?

| Model | ID | Preisstaffel nach Dauer | Privacy |

Check warning on line 271 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L271

Did you really mean 'Preisstaffel'?

Check warning on line 271 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L271

Did you really mean 'nach'?

Check warning on line 271 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L271

Did you really mean 'Dauer'?
|---|---|---|---|
| ACE-Step 1.5 | `ace-step-15` | 60s: $0.03, 90s: $0.04, 120s: $0.05, 150s: $0.06, 180s: $0.07, 210s: $0.08 | Anonymized |

Check warning on line 273 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L273

Did you really mean 'Anonymized'?
| ElevenLabs Music | `elevenlabs-music` | 60s: $0.69, 120s: $1.38, 180s: $2.08, 240s: $2.76, 300s: $3.45, 360s: $4.15, 420s: $4.84, 480s: $5.52, 540s: $6.22, 600s: $6.90 | Anonymized |

Check warning on line 274 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L274

Did you really mean 'Anonymized'?

#### Song-Generierung (pro Generierung)

Check warning on line 276 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L276

Did you really mean 'Generierung'?

| Model | ID | Pro Generierung | Privacy |

Check warning on line 278 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L278

Did you really mean 'Generierung'?
|---|---|---|---|
| Lyria 3 Pro | `lyria-3-pro` | $0.10 | Anonymized |

Check warning on line 280 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L280

Did you really mean 'Lyria'?

Check warning on line 280 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L280

Did you really mean 'Anonymized'?
| MiniMax Music 2.0 | `minimax-music-v2` | $0.04 | Anonymized |

Check warning on line 281 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L281

Did you really mean 'Anonymized'?
| MiniMax Music 2.5 | `minimax-music-v25` | $0.18 | Anonymized |

Check warning on line 282 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L282

Did you really mean 'Anonymized'?
| MiniMax Music 2.6 | `minimax-music-v26` | $0.18 | Anonymized |

Check warning on line 283 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L283

Did you really mean 'Anonymized'?
| Stable Audio 2.5 | `stable-audio-25` | $0.19 | Anonymized |

Check warning on line 284 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L284

Did you really mean 'Anonymized'?

#### Soundeffekte (pro Sekunde)

Check warning on line 286 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L286

Did you really mean 'Soundeffekte'?

Check warning on line 286 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L286

Did you really mean 'Sekunde'?

| Model | ID | Pro Sekunde | Privacy |

Check warning on line 288 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L288

Did you really mean 'Sekunde'?
|---|---|---|---|
| ElevenLabs Sound Effects | `elevenlabs-sound-effects-v2` | $0.0023 | Anonymized |

Check warning on line 290 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L290

Did you really mean 'Anonymized'?
| MMAudio V2 | `mmaudio-v2-text-to-audio` | $0.0009 | Anonymized |

Check warning on line 291 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L291

Did you really mean 'MMAudio'?

Check warning on line 291 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L291

Did you really mean 'Anonymized'?
| Seed Audio 1.0 | `seed-audio-1-0` | $0.0029 | Anonymized |

Check warning on line 292 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L292

Did you really mean 'Anonymized'?

</div>

<Info>
Für exakte Preise vor der Generierung verwenden Sie die [Audio Quote API](/api-reference/endpoint/audio/quote). Modelle mit Dauer-Preisen haben feste Preisstufen, während Pro-Sekunde-Modelle nach der Ausgabelänge abrechnen.

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'exakte'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'Preise'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'vor'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'Generierung'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'verwenden'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'Sie'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'Modelle'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'mit'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'haben'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'feste'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'Preisstufen'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'nach'?

Check warning on line 297 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L297

Did you really mean 'abrechnen'?
</Info>

### Video

<div id="pricing-video-placeholder">

Die Videopreise variieren je nach Auflösung und Dauer. Besuchen Sie die [Video-Models-Seite](/models/video) für genaue Angebote oder verwenden Sie die [Video Quote API](/api-reference/endpoint/video/quote).

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Videopreise'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'variieren'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'je'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'nach'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'und'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Dauer'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Besuchen'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Sie'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'genaue'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Angebote'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'oder'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'verwenden'?

Check warning on line 304 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L304

Did you really mean 'Sie'?

| Model | ID | Typ | Preise | Privacy |

Check warning on line 306 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L306

Did you really mean 'Preise'?
|---|---|---|---|---|
| Gemini Omni Flash | `gemini-omni-flash-text-to-video` | Text to Video | Variabel | Anonymized |

Check warning on line 308 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L308

Did you really mean 'Omni'?

Check warning on line 308 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L308

Did you really mean 'Variabel'?

Check warning on line 308 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L308

Did you really mean 'Anonymized'?
| Gemini Omni Flash | `gemini-omni-flash-image-to-video` | Image to Video | Variabel | Anonymized |

Check warning on line 309 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L309

Did you really mean 'Omni'?

Check warning on line 309 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L309

Did you really mean 'Variabel'?

Check warning on line 309 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L309

Did you really mean 'Anonymized'?
| Gemini Omni Flash R2V | `gemini-omni-flash-reference-to-video` | Text to Video | Variabel | Anonymized |

Check warning on line 310 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L310

Did you really mean 'Omni'?

Check warning on line 310 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L310

Did you really mean 'Variabel'?

Check warning on line 310 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L310

Did you really mean 'Anonymized'?
| Grok Imagine 1.5 Private | `grok-imagine-1-5-image-to-video-private` | Image to Video | Variabel | Private |

Check warning on line 311 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L311

Did you really mean 'Variabel'?
| Grok Imagine Private | `grok-imagine-text-to-video-private` | Text to Video | Variabel | Private |

Check warning on line 312 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L312

Did you really mean 'Variabel'?
| Grok Imagine Private | `grok-imagine-image-to-video-private` | Image to Video | Variabel | Private |

Check warning on line 313 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L313

Did you really mean 'Variabel'?
| Grok Imagine Private | `grok-imagine-video-to-video-private` | Text to Video | Variabel | Private |

Check warning on line 314 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L314

Did you really mean 'Variabel'?
| Grok Imagine R2V Private | `grok-imagine-reference-to-video-private` | Text to Video | Variabel | Private |

Check warning on line 315 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L315

Did you really mean 'Variabel'?
| HappyHorse 1.0 | `happyhorse-1-0-text-to-video` | Text to Video | Variabel | Anonymized |

Check warning on line 316 in de/overview/pricing.mdx

View check run for this annotation

Mintlify / Mintlify Validation (veniceai) - vale-spellcheck

de/overview/pricing.mdx#L316

Did you really mean 'Variabel'?
| HappyHorse 1.0 | `happyhorse-1-0-image-to-video` | Image to Video | Variabel | Anonymized |
| HappyHorse 1.0 Edit | `happyhorse-1-0-video-to-video` | Text to Video | Variabel | Anonymized |
| HappyHorse 1.0 Reference | `happyhorse-1-0-reference-to-video` | Text to Video | Variabel | Anonymized |
Expand Down Expand Up @@ -435,3 +439,5 @@
### Pro-Nutzer

Pro-Abonnenten erhalten beim Upgrade auf Pro einmalig 10 USD an API-Credits. Verwenden Sie diese, um zu testen und kleine Apps zu entwickeln.

Darüber hinaus wird die API-Nutzung zu denselben nutzungsbasierten Tarifen abgerechnet, die oben aufgeführt sind – das Pro-Abonnement selbst enthält keine zusätzlichen API-Kontingente wie inkludierte Bilder, Zeichen oder Tokens. Einige Modelle sind auf Pro-Konten beschränkt (`PRO_ONLY_MODEL`); ein Aufruf von einem Konto ohne aktives Pro-Abonnement gibt `AUTHENTICATION_FAILED_INACTIVE_KEY` zurück. Siehe [Fehlercodes](/api-reference/error-codes).
14 changes: 14 additions & 0 deletions es/guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,20 @@ Obtén el coste exacto antes de generar. Envía solo entradas de precio (`model`

La cotización es en USD.

<Info>
**Los parámetros de cotización son solo entradas de precio.** Los campos que envías a `/video/quote` —incluyendo `aspect_ratio`, `audio` y `reference_video_total_duration`— se usan únicamente para calcular el precio. **No** se reenvían a `/video/queue` y no afectan al vídeo generado. Enviar `aspect_ratio` a quote se acepta incluso para modelos (como `seedance-2-0-image-to-video`) que rechazan `aspect_ratio` en el momento de la generación, ya que los modelos image-to-video derivan la relación de aspecto de salida a partir de la imagen de entrada.
</Info>

### Precios de reference-to-video

Para los modelos R2V (p. ej., Seedance 2.0 R2V), pasa `reference_video_total_duration` —la duración agregada en segundos de todos los clips de referencia que planeas incluir— para que la cotización refleje el nivel de tarifa "input with video" y la fórmula de tokens `(input + output) × pixels`. Omítelo y la cotización devolverá la línea base sin referencia.

`reference_video_total_duration` solo es reconocido por `/video/quote`. No tiene efecto en `/video/queue` y omitirlo no provocará un error de generación.

### Mostrar precios estables

Las cotizaciones son puntuales en el tiempo y los precios pueden cambiar. Si quieres mostrar un precio fijo en tu app, llama a `/video/quote` una vez para cada combinación de parámetros que admitas y almacena el resultado en tu propio store; luego vuelve a cotizar de forma programada (o cuando se actualicen las listas de precios) para refrescar el valor en caché. No existe un endpoint de cotización "bloqueada" o "estática".

---

## Errores
Expand Down
6 changes: 6 additions & 0 deletions es/overview/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: "Precios de la API de Venice por 1M de tokens para modelos de texto

Precios por 1M de tokens salvo que se indique lo contrario. Todos los precios en USD. 1 Diem = $1/día de cómputo.

<Info>
**Planes de API vs. planes de consumidor.** La API de Venice se factura **por uso** en créditos USD (o mediante DIEM en staking). Es independiente de los planes de suscripción mensual de la app web de consumidor de Venice (Free, Pro, Max), cuyas asignaciones —como recuentos de imágenes o chat ilimitado— se aplican únicamente a las apps web/escritorio/móvil, **no** al uso de la API. Todas las llamadas a la API se contabilizan contra el saldo de créditos de tu API independientemente de tu plan de consumidor. Consulta [Usuarios Pro](#usuarios-pro) más abajo para el crédito único que reciben los suscriptores Pro.
</Info>

## Modelos de texto

### Chat Completions
Expand Down Expand Up @@ -435,3 +439,5 @@ Estos cargos se aplican además del precio estándar de tokens del modelo.
### Usuarios Pro

Los suscriptores Pro reciben un crédito único de $10 para la API al actualizarse a Pro. Úsalo para probar y construir aplicaciones pequeñas.

Más allá de ese crédito, el uso de la API se factura a las mismas tarifas de pago por uso indicadas arriba: la suscripción Pro en sí no incluye asignaciones adicionales de API como imágenes, caracteres o tokens incluidos. Algunos modelos están restringidos a cuentas Pro (`PRO_ONLY_MODEL`); llamarlos desde una cuenta sin una suscripción Pro activa devuelve `AUTHENTICATION_FAILED_INACTIVE_KEY`. Consulta [Códigos de error](/api-reference/error-codes).
14 changes: 14 additions & 0 deletions fr/guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,20 @@ Obtenez le coût exact avant la génération. Envoyez uniquement les entrées de

Le devis est en USD.

<Info>
**Les paramètres du devis servent uniquement au calcul du prix.** Les champs que vous envoyez à `/video/quote` — y compris `aspect_ratio`, `audio` et `reference_video_total_duration` — sont utilisés uniquement pour calculer le prix. Ils **ne sont pas** transmis à `/video/queue` et n'influencent pas la vidéo générée. Envoyer `aspect_ratio` au quote est accepté même pour les modèles (tels que `seedance-2-0-image-to-video`) qui rejettent `aspect_ratio` au moment de la génération, puisque les modèles image-to-video dérivent le ratio d'aspect de sortie à partir de l'image d'entrée.
</Info>

### Tarification reference-to-video

Pour les modèles R2V (par exemple Seedance 2.0 R2V), transmettez `reference_video_total_duration` — la durée cumulée en secondes de tous les clips de référence que vous prévoyez d'inclure — afin que le devis reflète le palier de tarif « input with video » et la formule de tokens `(input + output) × pixels`. Omettez-le et le devis renverra plutôt la valeur de base sans référence.

`reference_video_total_duration` n'est reconnu que par `/video/quote`. Il n'a aucun effet sur `/video/queue` et l'omettre ne provoquera pas d'erreur de génération.

### Afficher des prix stables

Les devis sont ponctuels et les prix peuvent changer. Si vous souhaitez afficher un prix fixe dans votre application, appelez `/video/quote` une fois pour chaque combinaison de paramètres que vous prenez en charge et mettez le résultat en cache dans votre propre stockage — puis redemandez un devis selon une planification (ou lors des mises à jour de la liste de prix) pour rafraîchir la valeur en cache. Il n'existe pas d'endpoint de devis « verrouillé » ou « statique ».

---

## Erreurs
Expand Down
6 changes: 6 additions & 0 deletions fr/overview/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: "Tarifs de l'API Venice par million de tokens pour les modèles tex

Prix par 1M de tokens sauf indication contraire. Tous les prix en USD. 1 Diem = 1 $/jour de compute.

<Info>
**API vs. plans consommateurs.** L'API Venice est facturée **à l'usage** en crédits USD (ou via des DIEM stakés). Elle est distincte des abonnements mensuels de l'application web consommateur de Venice (Free, Pro, Max), dont les quotas — comme les nombres d'images ou le chat illimité — s'appliquent uniquement aux applications web/desktop/mobile, **et non** à l'utilisation de l'API. Tous les appels API sont décomptés de votre solde de crédits API, quel que soit votre plan consommateur. Voir [Utilisateurs Pro](#utilisateurs-pro) ci-dessous pour le crédit unique dont bénéficient les abonnés Pro.
</Info>

## Modèles de texte

### Chat Completions
Expand Down Expand Up @@ -435,3 +439,5 @@ Ces frais s'appliquent en plus de la tarification standard des tokens du modèle
### Utilisateurs Pro

Les abonnés Pro reçoivent un crédit API unique de $10 lors du passage à Pro. Utilisez-le pour tester et créer de petites applications.

Au-delà de ce crédit, l'utilisation de l'API est facturée aux mêmes tarifs à l'usage indiqués ci-dessus — l'abonnement Pro en lui-même n'inclut pas de quotas API supplémentaires tels que des images, caractères ou tokens inclus. Certains modèles sont réservés aux comptes Pro (`PRO_ONLY_MODEL`) ; les appeler depuis un compte sans abonnement Pro actif renvoie `AUTHENTICATION_FAILED_INACTIVE_KEY`. Voir [Codes d'erreur](/api-reference/error-codes).
16 changes: 15 additions & 1 deletion guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Video Generation
description: Generate videos from text prompts or starting images on Venice's asynchronous queue API — submit a job, poll for status, and download the finished video.
description: Generate videos from text prompts or images on Venice's async queue API — submit a job, poll for status, and download the finished video.
"og:title": "Video Generation | Venice API Docs"
"og:description": "Learn how to generate videos from text prompts or images using Venice's async video generation API."
---
Expand Down Expand Up @@ -339,6 +339,20 @@ Get exact cost before generating. Send only pricing inputs (`model`, `duration`,

Quote is in USD.

<Info>
**Quote parameters are pricing inputs only.** Fields you send to `/video/quote` — including `aspect_ratio`, `audio`, and `reference_video_total_duration` — are used purely to compute the price. They are **not** forwarded to `/video/queue` and do not affect the generated video. Sending `aspect_ratio` to quote is accepted even for models (such as `seedance-2-0-image-to-video`) that reject `aspect_ratio` at generation time, since image-to-video models derive the output aspect ratio from the input image.
</Info>

### Reference-to-video pricing

For R2V models (e.g. Seedance 2.0 R2V), pass `reference_video_total_duration` — the aggregate duration in seconds of all reference clips you plan to include — so the quote reflects the "input with video" rate tier and the `(input + output) × pixels` token formula. Omit it and the quote returns the no-reference baseline instead.

`reference_video_total_duration` is only recognized by `/video/quote`. It has no effect on `/video/queue` and omitting it will not cause a generation error.

### Displaying stable prices

Quotes are point-in-time and prices can change. If you want to show a fixed price in your app, call `/video/quote` once for each parameter combination you support and cache the result in your own store — then re-quote on a schedule (or on price-list updates) to refresh the cached value. There is no "locked" or "static" quote endpoint.

---

## Errors
Expand Down
14 changes: 14 additions & 0 deletions it/guides/media/video-generation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,20 @@ Ottieni il costo esatto prima di generare. Invia solo gli input di pricing (`mod

Il preventivo è in USD.

<Info>
**I parametri della quote sono solo input di pricing.** I campi che invii a `/video/quote` — inclusi `aspect_ratio`, `audio` e `reference_video_total_duration` — vengono usati esclusivamente per calcolare il prezzo. **Non** vengono inoltrati a `/video/queue` e non influenzano il video generato. Inviare `aspect_ratio` alla quote è accettato anche per i modelli (come `seedance-2-0-image-to-video`) che rifiutano `aspect_ratio` al momento della generazione, poiché i modelli image-to-video ricavano l'aspect ratio di output dall'immagine di input.
</Info>

### Prezzi reference-to-video

Per i modelli R2V (per esempio Seedance 2.0 R2V), passa `reference_video_total_duration` — la durata aggregata in secondi di tutti i clip di riferimento che intendi includere — così la quote riflette la fascia tariffaria "input with video" e la formula token `(input + output) × pixel`. Se lo ometti, la quote restituisce invece il valore di base senza riferimento.

`reference_video_total_duration` è riconosciuto solo da `/video/quote`. Non ha effetto su `/video/queue` e ometterlo non causerà un errore di generazione.

### Mostrare prezzi stabili

Le quote sono valide in un dato momento e i prezzi possono cambiare. Se vuoi mostrare un prezzo fisso nella tua app, chiama `/video/quote` una volta per ogni combinazione di parametri che supporti e memorizza il risultato nel tuo store — poi riquota su base pianificata (o agli aggiornamenti del listino) per aggiornare il valore in cache. Non esiste un endpoint di quote "bloccato" o "statico".

---

## Errori
Expand Down
6 changes: 6 additions & 0 deletions it/overview/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ description: "Prezzi dell'API Venice per 1M di token su modelli di testo, immagi

Prezzi per 1M di token salvo diversa indicazione. Tutti i prezzi sono in USD. 1 Diem = $1/giorno di compute.

<Info>
**API vs. piani consumer.** L'API Venice è fatturata **a consumo (pay-per-use)** in crediti USD (o tramite DIEM in staking). È separata dai piani di abbonamento mensili dell'app web consumer di Venice (Free, Pro, Max), le cui quote — come il numero di immagini o la chat illimitata — si applicano soltanto alle app web/desktop/mobile, **non** all'uso dell'API. Tutte le chiamate API vengono contabilizzate sul saldo dei crediti API indipendentemente dal tuo piano consumer. Vedi [Utenti Pro](#utenti-pro) qui sotto per il credito una tantum che ricevono gli abbonati Pro.
</Info>

## Modelli di testo

### Chat Completions
Expand Down Expand Up @@ -435,3 +439,5 @@ Questi costi si applicano in aggiunta al prezzo standard dei token del modello.
### Utenti Pro

Gli abbonati Pro ricevono un credito API una tantum di $10 al momento dell'upgrade a Pro. Usalo per testare e creare piccole app.

Oltre a quel credito, l'uso dell'API è fatturato secondo le stesse tariffe pay-per-use elencate sopra — l'abbonamento Pro in sé non include quote API aggiuntive come immagini, caratteri o token inclusi. Alcuni modelli sono riservati agli account Pro (`PRO_ONLY_MODEL`); chiamarli da un account senza un abbonamento Pro attivo restituisce `AUTHENTICATION_FAILED_INACTIVE_KEY`. Vedi [Codici di errore](/api-reference/error-codes).
Loading