Skip to content

Commit 29d1e2b

Browse files
feat: re-gen pixverses 5.5
1 parent 2bc0426 commit 29d1e2b

3 files changed

Lines changed: 34 additions & 20 deletions

File tree

docs/api-references/video-models/PixVerse/v5.5-image-to-video.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@
7777
},
7878
"generate_audio_switch": {
7979
"type": "boolean",
80-
"description": "Audio switch. Controls whether the video has audio. true: Audio on, false: Audio off"
80+
"default": false,
81+
"description": "Enable audio generation.\n- true: Audio on.\n- false: Audio off."
8182
},
8283
"generate_multi_clip_switch": {
8384
"type": "boolean",
84-
"description": "Single or multi-clip switch. Controls single-clip and multi-clip generation modes. true: Multi-clip, false: Single-clip"
85+
"default": false,
86+
"description": "Enable multi-clip generation with dynamic camera changes.\n- true: Multi-clip. \n- false: Single-clip."
8587
},
8688
"thinking_type": {
8789
"type": "string",
@@ -90,7 +92,8 @@
9092
"disabled",
9193
"auto"
9294
],
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"
95+
"default": "enabled",
96+
"description": "Prompt reasoning enhancement mode. \n- \"enabled\": Turn on prompt optimization. \n- \"disabled\": Turn off prompt optimization. \n- \"auto\" or omitted: Let the model decide automatically."
9497
}
9598
},
9699
"required": [
@@ -193,19 +196,19 @@
193196
"x-codeSamples": [
194197
{
195198
"lang": "JavaScript",
196-
"source": "async function main() {\n const response = await fetch('https://api.aimlapi.com/v2/video/generations', {\n method: 'POST',\n headers: {\n 'Authorization': 'Bearer <YOUR_AIMLAPI_KEY>',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n \"model\": \"pixverse/v5.5/image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }),\n });\n\n const data = await response.json();\n console.log(JSON.stringify(data, null, 2));\n}\n\nmain();"
199+
"source": "async function main() {\n const response = await fetch('https://api.aimlapi.com/v2/video/generations', {\n method: 'POST',\n headers: {\n 'Authorization': 'Bearer <YOUR_AIMLAPI_KEY>',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n \"model\": \"pixverse/v5-5-image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }),\n });\n\n const data = await response.json();\n console.log(JSON.stringify(data, null, 2));\n}\n\nmain();"
197200
},
198201
{
199202
"lang": "Python",
200-
"source": "import requests\n\nresponse = requests.post(\n \"https://api.aimlapi.com/v2/video/generations\",\n headers={\n \"Content-Type\": \"application/json\",\n \"Authorization\": \"Bearer <YOUR_AIMLAPI_KEY>\",\n },\n json={\n \"model\": \"pixverse/v5.5/image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }\n)\n\ndata = response.json()\nprint(data)"
203+
"source": "import requests\n\nresponse = requests.post(\n \"https://api.aimlapi.com/v2/video/generations\",\n headers={\n \"Content-Type\": \"application/json\",\n \"Authorization\": \"Bearer <YOUR_AIMLAPI_KEY>\",\n },\n json={\n \"model\": \"pixverse/v5-5-image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }\n)\n\ndata = response.json()\nprint(data)"
201204
},
202205
{
203206
"lang": "cURL",
204-
"source": "curl -L \\\n --request POST \\\n --url 'https://api.aimlapi.com/v2/video/generations' \\\n --header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \\\n --header 'Content-Type: application/json' \\\n --data '{\n \"model\": \"pixverse/v5.5/image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }'"
207+
"source": "curl -L \\\n --request POST \\\n --url 'https://api.aimlapi.com/v2/video/generations' \\\n --header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \\\n --header 'Content-Type: application/json' \\\n --data '{\n \"model\": \"pixverse/v5-5-image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n }'"
205208
},
206209
{
207210
"lang": "HTTP",
208-
"source": "POST / HTTP/1.1\nHost: test.com\nAuthorization: Bearer <YOUR_AIMLAPI_KEY>\nContent-Type: application/json\nAccept: */*\n\n{\n \"model\": \"pixverse/v5.5/image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n}"
211+
"source": "POST /v2/video/generations HTTP/1.1\nHost: api.aimlapi.com\nAuthorization: Bearer <YOUR_AIMLAPI_KEY>\nContent-Type: application/json\nAccept: */*\n\n{\n \"model\": \"pixverse/v5-5-image-to-video\",\n \"prompt\": \"Mona Lisa puts on glasses with her hands.\",\n \"image_url\": \"https://s2-111386.kwimgs.com/bs2/mmu-aiplatform-temp/kling/20240620/1.jpeg\"\n}"
209212
}
210213
]
211214
}

docs/api-references/video-models/PixVerse/v5.5-text-to-video.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,13 @@
8484
},
8585
"generate_audio_switch": {
8686
"type": "boolean",
87-
"description": "Audio switch. Controls whether the video has audio. true: Audio on, false: Audio off"
87+
"default": false,
88+
"description": "Enable audio generation.\n- true: Audio on.\n- false: Audio off."
8889
},
8990
"generate_multi_clip_switch": {
9091
"type": "boolean",
91-
"description": "Single or multi-clip switch. Controls single-clip and multi-clip generation modes. true: Multi-clip, false: Single-clip"
92+
"default": false,
93+
"description": "Enable multi-clip generation with dynamic camera changes.\n- true: Multi-clip. \n- false: Single-clip."
9294
},
9395
"thinking_type": {
9496
"type": "string",
@@ -97,7 +99,8 @@
9799
"disabled",
98100
"auto"
99101
],
100-
"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"
102+
"default": "enabled",
103+
"description": "Prompt reasoning enhancement mode. \n- \"enabled\": Turn on prompt optimization. \n- \"disabled\": Turn off prompt optimization. \n- \"auto\" or omitted: Let the model decide automatically."
101104
}
102105
},
103106
"required": [
@@ -199,19 +202,19 @@
199202
"x-codeSamples": [
200203
{
201204
"lang": "JavaScript",
202-
"source": "async function main() {\n const response = await fetch('https://api.aimlapi.com/v2/video/generations', {\n method: 'POST',\n headers: {\n 'Authorization': 'Bearer <YOUR_AIMLAPI_KEY>',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n \"model\": \"pixverse/v5.5/text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n }),\n });\n\n const data = await response.json();\n console.log(JSON.stringify(data, null, 2));\n}\n\nmain();"
205+
"source": "async function main() {\n const response = await fetch('https://api.aimlapi.com/v2/video/generations', {\n method: 'POST',\n headers: {\n 'Authorization': 'Bearer <YOUR_AIMLAPI_KEY>',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n \"model\": \"pixverse/v5-5-text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n }),\n });\n\n const data = await response.json();\n console.log(JSON.stringify(data, null, 2));\n}\n\nmain();"
203206
},
204207
{
205208
"lang": "Python",
206-
"source": "import requests\n\nresponse = requests.post(\n \"https://api.aimlapi.com/v2/video/generations\",\n headers={\n \"Content-Type\": \"application/json\",\n \"Authorization\": \"Bearer <YOUR_AIMLAPI_KEY>\",\n },\n json={\n \"model\": \"pixverse/v5.5/text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n }\n)\n\ndata = response.json()\nprint(data)"
209+
"source": "import requests\n\nresponse = requests.post(\n \"https://api.aimlapi.com/v2/video/generations\",\n headers={\n \"Content-Type\": \"application/json\",\n \"Authorization\": \"Bearer <YOUR_AIMLAPI_KEY>\",\n },\n json={\n \"model\": \"pixverse/v5-5-text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n }\n)\n\ndata = response.json()\nprint(data)"
207210
},
208211
{
209212
"lang": "cURL",
210-
"source": "curl -L \\\n --request POST \\\n --url 'https://api.aimlapi.com/v2/video/generations' \\\n --header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \\\n --header 'Content-Type: application/json' \\\n --data '{\n \"model\": \"pixverse/v5.5/text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it\\'s coming.\"\n }'"
213+
"source": "curl -L \\\n --request POST \\\n --url 'https://api.aimlapi.com/v2/video/generations' \\\n --header 'Authorization: Bearer <YOUR_AIMLAPI_KEY>' \\\n --header 'Content-Type: application/json' \\\n --data '{\n \"model\": \"pixverse/v5-5-text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it\\'s coming.\"\n }'"
211214
},
212215
{
213216
"lang": "HTTP",
214-
"source": "POST / HTTP/1.1\nHost: test.com\nAuthorization: Bearer <YOUR_AIMLAPI_KEY>\nContent-Type: application/json\nAccept: */*\n\n{\n \"model\": \"pixverse/v5.5/text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n}"
217+
"source": "POST /v2/video/generations HTTP/1.1\nHost: api.aimlapi.com\nAuthorization: Bearer <YOUR_AIMLAPI_KEY>\nContent-Type: application/json\nAccept: */*\n\n{\n \"model\": \"pixverse/v5-5-text-to-video\",\n \"prompt\": \"A menacing evil dragon appears in a distance above the tallest mountain, then rushes toward the camera with its jaws open, revealing massive fangs. We see it's coming.\"\n}"
215218
}
216219
]
217220
}
Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
[
22
{
3-
"name": "google/gemini-3-flash-preview",
4-
"url": "https://ai.aimlapi.com/docs-json?endpoint=openai/chat-completions&model=google/gemini-3-flash-preview",
5-
"alias": "gemini-3-flash-preview",
6-
"category": "text-models-llm",
7-
"vendor": "Google",
8-
"codeSamples": "chat-completion"
3+
"name": "pixverse/v5-5-text-to-video",
4+
"url": "https://ai.aimlapi.com/docs-json?endpoint=internal/video-generations/submit&model=pixverse/v5.5/text-to-video",
5+
"alias": "v5.5/text-to-video",
6+
"category": "video-models",
7+
"vendor": "PixVerse",
8+
"codeSamples": "video:video"
9+
},
10+
{
11+
"name": "pixverse/v5-5-image-to-video",
12+
"url": "https://ai.aimlapi.com/docs-json?endpoint=internal/video-generations/submit&model=pixverse/v5.5/image-to-video",
13+
"alias": "v5.5/image-to-video",
14+
"category": "video-models",
15+
"vendor": "PixVerse",
16+
"codeSamples": "video:video"
917
}
1018
]

0 commit comments

Comments
 (0)