Video Generation
The current published generic video flow is task-based. DashScope media routes and Transtreams Kling routes are available.
The current published generic video flow is task-based. DashScope media routes remain available, and Kling V3 video is available through Transtreams task routes.
Published routes
| Route | Purpose |
|---|---|
POST /dashscope/v1/services/aigc/video-generation/video-synthesis | Create a video from prompt, image, and audio |
GET /dashscope/v1/tasks/{task_id} | Query video task status and fetch the result |
POST /transtreams/kling/v1/videos/text2video | Create a Kling V3 text-to-video task |
GET /transtreams/kling/v1/videos/text2video/{task_id} | Query a Kling V3 text-to-video task |
POST /transtreams/kling/v1/videos/omni-video | Create a Kling V3 Omni video task |
GET /transtreams/kling/v1/videos/omni-video/{task_id} | Query a Kling V3 Omni video task |
Input pattern
The current schema combines:
- a text prompt
- an image URL
- an audio URL
- generation parameters such as duration and resolution
Task lifecycle
The response returns a task immediately. After that:
- store
task_id - query the task route
- wait for
task_statusto reach success - consume
video_url
In the published examples, the task starts as PENDING and later becomes SUCCEEDED.
For Kling V3 details, including Standard/Pro model_name: "kling-v3", Omni model_name: "kling-v3-omni", mode, audio, and reference video, see Kling video. The Omni model is displayed as Kling: Video v3.0 Omni.
Practical advice
- Design your UI as an async workflow, not a single request-response page
- Persist the original prompt, task ID, and returned asset URL together
- Keep polling as a fallback even if you also use webhooks elsewhere in your platform
Where AI Music fits
If you are generating a music video from a song workflow rather than a generic video pipeline, look at Media & Music instead of treating it as a plain video job.
Image Generation
AnyInt publishes Gemini-native, DashScope, and Transtreams Kling image-generation paths. They overlap in outcome, but the request bodies and strengths are different.
Overview
AI Music is a live AnyInt product surface published under /suno/. It is designed for song generation and transformation workflows, not generic text or image inference.