Skip to main content
POST
/
v3
/
async
/
wan2.6-v2v
Wan 2.6 Reference-to-Video
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/wan2.6-v2v \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "input": {
    "prompt": "<string>",
    "audio_url": "<string>",
    "reference_urls": [
      {}
    ],
    "negative_prompt": "<string>"
  },
  "parameters": {
    "seed": 123,
    "size": "<string>",
    "audio": true,
    "duration": 123,
    "shot_type": "<string>",
    "watermark": true,
    "prompt_extend": true
  }
}
'
{
  "task_id": "<string>"
}
This is an asynchronous API and only returns the async task_id. You need to use the task_id to call the task result query API to obtain the video generation result.
This is an asynchronous API and will only return the task_id of the async task. You should use this task_id to request the Query Task Result API to retrieve the generated result.

Request Headers

Content-Type
string
required
Enum value: application/json
Authorization
string
required
Bearer authentication format: Bearer {{API key}}.

Request Body

input
object
required
parameters
object

Response Information

task_id
string
required
Use task_id to request the Query Task Result API to retrieve the generated output.