メインコンテンツへスキップ
POST
/
v3
/
async
/
pixverse-v6-transition
PixVerse V6 トランジション動画生成
curl --request POST \
  --url https://api.highwayapi.ai/v3/async/pixverse-v6-transition \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "seed": 123,
  "image": "<string>",
  "style": "<string>",
  "prompt": "<string>",
  "duration": 123,
  "end_image": "<string>",
  "resolution": "<string>",
  "aspect_ratio": "<string>",
  "thinking_type": true,
  "negative_prompt": "<string>",
  "generate_audio_switch": true,
  "generate_multi_clip_switch": true
}
'
{
  "task_id": "<string>"
}
PixVerse V6 トランジション動画生成モデル。テキストプロンプトを使用して2枚の画像間に滑らかなトランジション動画を生成し、複数の解像度と音声生成に対応しています。
これは非同期APIであり、非同期タスクの task_id のみを返します。この task_id を使用して タスク結果照会 API にリクエストし、生成結果を取得してください。

リクエストヘッダー

Content-Type
string
必須
列挙値: application/json
Authorization
string
必須
Bearer 認証形式: Bearer {{API Key}}。

リクエストボディ

seed
integer
再現可能な生成に使用するランダムシード
image
string
必須
開始フレーム画像 URL
style
string
動画のビジュアルスタイル
prompt
string
必須
トランジション動画のテキスト説明
duration
integer
デフォルト:5
動画の長さ(秒)
end_image
string
トランジション終了フレーム画像 URL
resolution
string
デフォルト:"720p"
出力動画の解像度選択可能な値:360p, 540p, 720p, 1080p
aspect_ratio
string
デフォルト:"1:1"
出力動画のアスペクト比
thinking_type
boolean
プロンプト最適化を有効化
negative_prompt
string
不要な要素を除外するためのネガティブプロンプト
generate_audio_switch
boolean
デフォルト:false
動画音声生成を有効化
generate_multi_clip_switch
boolean
デフォルト:false
マルチクリップ動画生成を有効化

レスポンス情報

task_id
string
必須
task_id を使用して タスク結果照会 API にリクエストし、生成された出力を取得してください。