Перейти к основному содержанию
POST
/
midjourney
/
video
/
extend
cURL
curl --request POST \
  --url https://api.ttapi.io/midjourney/video/extend \
  --header 'Content-Type: application/json' \
  --header 'TT-API-KEY: <api-key>' \
  --data '
{
  "jobId": "<string>",
  "index": "0-3",
  "manual": "low",
  "animateMode": "auto",
  "bs": "4",
  "hookUrl": "<string>"
}
'
{
  "status": "SUCCESS",
  "message": "success",
  "data": {
    "job_id": "job_id"
  }
}

Авторизации

TT-API-KEY
string
header
обязательно

Вы можете получить API-ключ в TTAPI Dashboard.

Тело

application/json
jobId
string
обязательно

Job ID of the previous task. Note: The previous task must be in completed status to continue the video

index
enum<int>
обязательно

Select which video to continue from
Choose one from the four videos in the previous task
0 represents the first video, 1 represents the second, etc.

Доступные опции:
0-3
manual
string
по умолчанию:low

Motion intensity. low - Low motion, high - High motion

animateMode
enum<string>
по умолчанию:auto

Animation mode

Доступные опции:
auto,
manual
bs
enum<int>
по умолчанию:4

Number of videos to generate in batch

Доступные опции:
1,
2,
4
hookUrl
string

Callback notification URL. When task completes or fails, this URL will be notified. Notification data structure is consistent with fetch structure. If not set, you need to request the fetch interface for query

Ответ

Запрос выполнен успешно

status
string
обязательно
Пример:

"SUCCESS"

message
string
обязательно
Пример:

"success"

data
object
обязательно
Пример:
{ "job_id": "job_id" }
Last modified on March 26, 2026