Multi-image Video Generator API

REST API and MCP service documentation generated from server-side API definitions. Responses shown here are the direct payload returned by each API execution.

API selector
AI Content Generation

API overview

Generate ecommerce product videos from multiple reference images and a prompt, then query the asynchronous task for its completed result.

Try this API
Endpoint
https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run
MCP method
nexscope_aigc_videogen_multi

Authentication

All run endpoints require a user API key. Send it as a bearer token in the Authorization header.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Missing or invalid API keys return an authentication error. Manage keys from .
POSThttps://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run

Run an API

Create requires imageList, videoType, videoTime, and prompt. Query requires taskId and uses the provider task endpoint.

Slugaigc-videogen-multi
HeadersAuthorization: Bearer nk_...
Content-Type: application/json
Request bodyAPI-specific JSON object.
Response bodyDirect API response payload. No data/result wrapper is added.

Status codes

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Example request

curl -X POST https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run \
  -H "Authorization: Bearer nk_xxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{   "videoType": "KLING",   "imageList": [     "https://example.com/product.jpg"   ],   "isPro": false,   "voice": false,   "promptOptimizer": false,   "resolution": "720p",   "operation": "create",   "prompt": "Create a rotating product showcase.",   "videoTime": 5,   "aspectRatio": "16:9" }'
All categories/ AI Content Generation
POSThttps://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run

Run this API

Send a JSON request to execute this API and receive the direct response payload.

Open tester

Endpoint

MethodPOST
Pathhttps://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run
AuthBearer API key
Content-Typeapplication/json

Request body

NameTypeRequiredDescription
operationstringoptional
create (default) or query.
Example: create
imageListarrayconditional
Public reference image URLs required by create. KLING supports up to 7 images; SEED, SEED_FAST, and HAPPY_HORSE support up to 9.
Example: [ "https://example.com/product.jpg" ]
videoTypestringconditional
Video model: KLING, SEED, SEED_FAST, or HAPPY_HORSE.
Example: KLING
videoTimeintegerconditional
Duration in seconds. KLING supports 5 or 10; SEED and SEED_FAST support 5, 10, or 15; HAPPY_HORSE supports 5, 10, or 15 and defaults to 15 at the provider.
Example: 5
promptstringconditional
Generation prompt required by create.
Example: Create a rotating product showcase.
promptOptimizerbooleanoptional
Whether the provider should optimize the prompt.
Example: false
isProbooleanoptional
Whether to use provider Pro mode. SEED_FAST and HAPPY_HORSE do not support Pro mode.
Example: false
voicebooleanoptional
Whether to generate audio. Supported by SEED and SEED_FAST only.
Example: false
aspectRatiostringoptional
Requested aspect ratio: 16:9 or 9:16.
Example: 16:9
resolutionstringoptional
Requested output resolution. Supported values depend on videoType.
Example: 720p
memberIdstringoptional
Optional provider member identifier.
Example:
taskIdstringconditional
Provider task ID returned by create; required by operation=query.
Example: 123456789

Request example

{
  "videoType": "KLING",
  "imageList": [
    "https://example.com/product.jpg"
  ],
  "isPro": false,
  "voice": false,
  "promptOptimizer": false,
  "resolution": "720p",
  "operation": "create",
  "prompt": "Create a rotating product showcase.",
  "videoTime": 5,
  "aspectRatio": "16:9"
}

Response body

Returns the provider video-task payload directly.

NameTypeRequiredDescription
taskIdstringoptional
Provider task ID.
Example: 123456789
statusstringoptional
Provider task status.
Example: PROCESSING
videoUrlstringoptional
Generated video URL when available.
Example: https://example.com/video.mp4
costTokenintegeroptional
Provider-reported token cost.
Example: 1260000
errcodeintegeroptional
Upstream status code returned by the provider.
errmsgstringoptional
Upstream status message returned by the provider.
codestringoptional
Provider-specific status code.
msgstringoptional
Provider-specific status message.
messagestringoptional
Provider-specific message.
typestringoptional
Provider-specific render or payload type.
titlestringoptional
Provider-specific response title.
sourceTypestringoptional
Provider-specific source platform type.
sourceToolstringoptional
Provider-specific source tool name.
costTimeintegeroptional
Execution time reported by the upstream provider.
pageintegeroptional
Current page returned by the upstream provider.
pageSizeintegeroptional
Page size returned by the upstream provider.
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
totalPageintegeroptional
Total page count returned by the upstream provider.
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.

Response example

Direct response payload. No extra wrapper is added.

{
  "taskId": "123456789",
  "status": "PROCESSING",
  "videoUrl": "https://example.com/video.mp4",
  "costToken": 1260000
}

Responses

CodeDescription
200API executed successfully. Body is the direct response payload.
400Request JSON or required API parameters are invalid.
401API key is missing, invalid, or cannot be matched to a user.
5xxAPI execution or upstream service failed.

Data source, freshness, and limitations

Source, freshness, coverage, rate limits, and estimation notes are not specified in this API definition unless they appear in the request or response field documentation above. Do not assume official marketplace data or real-time freshness when it is not explicitly documented.

Related APIs

MCP

Use the MCP endpoint when an agent needs to discover and call API tools with JSON-RPC.

GET /api/skill-api/v1/mcp
POST /api/skill-api/v1/mcp
Authorization: Bearer nk_xxxxxxxxxxxxxxxxx
Content-Type: application/json

Call a tool

{
  "jsonrpc": "2.0",
  "id": "tool-call-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_aigc_videogen_multi",
    "arguments": {
      "videoType": "KLING",
      "imageList": [
        "https://example.com/product.jpg"
      ],
      "isPro": false,
      "voice": false,
      "promptOptimizer": false,
      "resolution": "720p",
      "operation": "create",
      "prompt": "Create a rotating product showcase.",
      "videoTime": 5,
      "aspectRatio": "16:9"
    }
  }
}

Online test

Execute the current API with your API key and JSON payload.

Try it

Send a real request with the same contract shown in the reference.

Endpoint
https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run
Task result endpoint
https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run (operation=query)
MCP method
nexscope_aigc_videogen_multi
cURL
curl -X POST \
  https://api.nexscope.ai/api/skill-api/v1/skills/aigc-videogen-multi/run \
  -H "Authorization: Bearer nk-..." \
  -H "Content-Type: application/json" \
  -d '{ "videoType": "KLING", "imageList": [], "isPro": false, "voice": false, "promptOptimizer": false, "resolution": "720p", "operation": "create", "prompt": "Create a rotating product showcase.", "videoTime": 5, "aspectRatio": "16:9" }'
Response
No response yet. Run the request to see the response here.
Task result

Results are checked automatically after Run API. You can also enter a task ID and check it manually; completed resources use Nexscope URLs and show actual charged credits.

Result response
No task result yet. Query the task to see the generated output here.