You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The text description of the scene, subject, or action to generate in the video."
32
+
},
33
+
"image_url": {
34
+
"type": "string",
35
+
"format": "uri",
36
+
"description": "URL of the image to be used as the first frame of the video."
37
+
},
38
+
"resolution": {
39
+
"type": "string",
40
+
"enum": [
41
+
"360p",
42
+
"540p",
43
+
"720p",
44
+
"1080p"
45
+
],
46
+
"default": "720p",
47
+
"description": "An enumeration where the short side of the video frame determines the resolution."
48
+
},
49
+
"duration": {
50
+
"type": "integer",
51
+
"description": "The output video length in seconds. The 1080p quality option does not support 8-second videos.",
52
+
"enum": [
53
+
5,
54
+
8,
55
+
10
56
+
],
57
+
"default": "5"
58
+
},
59
+
"negative_prompt": {
60
+
"type": "string",
61
+
"description": "The description of elements to avoid in the generated video."
62
+
},
63
+
"style": {
64
+
"type": "string",
65
+
"enum": [
66
+
"anime",
67
+
"3d_animation",
68
+
"clay",
69
+
"comic",
70
+
"cyberpunk"
71
+
],
72
+
"description": "The style of the generated video."
73
+
},
74
+
"seed": {
75
+
"type": "integer",
76
+
"description": "Varying the seed integer is a way to get different results for the same other request parameters. Using the same value for an identical request will produce similar results. If unspecified, a random number is chosen."
77
+
},
78
+
"generate_audio_switch": {
79
+
"type": "boolean",
80
+
"description": "Audio switch. Controls whether the video has audio. true: Audio on, false: Audio off"
81
+
},
82
+
"generate_multi_clip_switch": {
83
+
"type": "boolean",
84
+
"description": "Single or multi-clip switch. Controls single-clip and multi-clip generation modes. true: Multi-clip, false: Single-clip"
85
+
},
86
+
"thinking_type": {
87
+
"type": "string",
88
+
"enum": [
89
+
"enabled",
90
+
"disabled",
91
+
"auto"
92
+
],
93
+
"description": "Prompt reasoning enhancement. Controls whether the system should enhance your prompt with internal reasoning and optimization. \"enabled\": Turn on system-level optimization. \"disabled\": Turn off system-level optimization. \"auto\" or omitted: Let the model decide automatically"
94
+
}
95
+
},
96
+
"required": [
97
+
"model",
98
+
"prompt",
99
+
"image_url"
100
+
],
101
+
"title": "pixverse/v5.5/image-to-video"
102
+
}
103
+
}
104
+
}
105
+
},
106
+
"responses": {
107
+
"200": {
108
+
"content": {
109
+
"application/json": {
110
+
"schema": {
111
+
"type": "object",
112
+
"properties": {
113
+
"id": {
114
+
"type": "string",
115
+
"description": "The ID of the generated video.",
116
+
"example": "60ac7c34-3224-4b14-8e7d-0aa0db708325"
117
+
},
118
+
"status": {
119
+
"type": "string",
120
+
"enum": [
121
+
"queued",
122
+
"generating",
123
+
"completed",
124
+
"error"
125
+
],
126
+
"description": "The current status of the generation task.",
127
+
"example": "completed"
128
+
},
129
+
"video": {
130
+
"type": "object",
131
+
"nullable": true,
132
+
"properties": {
133
+
"url": {
134
+
"type": "string",
135
+
"format": "uri",
136
+
"description": "The URL where the file can be downloaded from.",
0 commit comments