Kandinsky5 Distill
Kandinsky 5.0 Distilled is a lightweight diffusion model for fast, high-quality text-to-video generation.
Header parameters
AuthorizationstringRequiredExample:
sk-yOm1Vc3raDjQluBttyAwSdbVxtWFEAPCbtAZ2uF3yST1xNCYBody
modelstringRequiredExample:
model is the model name
kandinsky5-distill-text-to-videopromptstringRequiredExample:
prompt is the prompt.
A cute baby sea otter.resolutionstring · enumOptionalDefault:
Resolution of the generated video in W:H format. One of (768x512, 512x768, 512x512). Default value: "768x512"
Possible enum values: 768x512, 512x768, 512x512
768x512Example: 768x512Possible values: video_lengthstring · enumOptionalDefault:
The length of the video to generate (5s or 10s) Default value: "5s"
Possible enum values: 5s, 10s
5sExample: 5sPossible values: output_formatstring · enumOptionalDefault:
output_format indicate the output format, default value is url.
urlExample: urlPossible values: Responses
200Success
application/json
post
/v1/videos/generationsPOST /v1/videos/generations HTTP/1.1
Host: video.onerouter.pro
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 143
{
"model": "kandinsky5-distill-text-to-video",
"prompt": "A cute baby sea otter.",
"resolution": "768x512",
"video_length": "5s",
"output_format": "url"
}200Success
{
"data": [
{
"url": "https://resource.onerouter.pro/video/generated%2Fonerouter_1d81526d-0c47-415c-8072-f4c25d250179.mp4",
"revised_prompt": ""
}
],
"created": 1760775474
}Last updated