メインコンテンツへスキップ
POST
/
v1
/
videos
/
generations
gemini-omni-flash-video-edit インターフェース
curl --request POST \
  --url https://api.evolink.ai/v1/videos/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "gemini-omni-flash-video-edit",
  "prompt": "画面の光をより暖かくし、それ以外はそのまま保つ",
  "video_urls": [
    "https://example.com/source.mp4"
  ]
}
'
import requests

url = "https://api.evolink.ai/v1/videos/generations"

payload = {
"model": "gemini-omni-flash-video-edit",
"prompt": "画面の光をより暖かくし、それ以外はそのまま保つ",
"video_urls": ["https://example.com/source.mp4"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'gemini-omni-flash-video-edit',
prompt: '画面の光をより暖かくし、それ以外はそのまま保つ',
video_urls: ['https://example.com/source.mp4']
})
};

fetch('https://api.evolink.ai/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.evolink.ai/v1/videos/generations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => 'gemini-omni-flash-video-edit',
'prompt' => '画面の光をより暖かくし、それ以外はそのまま保つ',
'video_urls' => [
'https://example.com/source.mp4'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.evolink.ai/v1/videos/generations"

payload := strings.NewReader("{\n \"model\": \"gemini-omni-flash-video-edit\",\n \"prompt\": \"画面の光をより暖かくし、それ以外はそのまま保つ\",\n \"video_urls\": [\n \"https://example.com/source.mp4\"\n ]\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.evolink.ai/v1/videos/generations")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"gemini-omni-flash-video-edit\",\n \"prompt\": \"画面の光をより暖かくし、それ以外はそのまま保つ\",\n \"video_urls\": [\n \"https://example.com/source.mp4\"\n ]\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.evolink.ai/v1/videos/generations")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"gemini-omni-flash-video-edit\",\n \"prompt\": \"画面の光をより暖かくし、それ以外はそのまま保つ\",\n \"video_urls\": [\n \"https://example.com/source.mp4\"\n ]\n}"

response = http.request(request)
puts response.read_body
{
  "created": 1757169743,
  "id": "task-unified-1757169743-7cvnl5zw",
  "model": "gemini-omni-flash-video-edit",
  "object": "video.generation.task",
  "progress": 0,
  "status": "pending",
  "task_info": {
    "can_cancel": false,
    "estimated_time": 60
  },
  "type": "video",
  "usage": {
    "billing_rule": "per_token",
    "credits_reserved": 102.34,
    "user_group": "default"
  }
}
{
"error": {
"code": "invalid_request",
"message": "Invalid request parameters",
"type": "invalid_request_error"
}
}
{
"error": {
"code": "unauthorized",
"message": "Invalid or expired token",
"type": "authentication_error"
}
}
{
"error": {
"code": "insufficient_quota",
"message": "Insufficient quota. Please top up your account.",
"type": "insufficient_quota"
}
}
{
"error": {
"code": "model_access_denied",
"message": "Token does not have access to model: gemini-omni-flash-video-edit",
"type": "invalid_request_error"
}
}
{
"error": {
"code": "rate_limit_exceeded",
"message": "Too many requests, please try again later",
"type": "rate_limit_error"
}
}
{
"error": {
"code": "internal_error",
"message": "Internal server error",
"type": "api_error"
}
}

承認

Authorization
string
header
必須

##すべてのインターフェースはBearer Tokenによる認証が必要です##

API Key の取得:

API Key 管理ページ にアクセスして API Key を取得してください

利用時はリクエストヘッダーに以下を追加します:

Authorization: Bearer YOUR_API_KEY

ボディ

application/json
model
enum<string>
必須

モデル名。gemini-omni-flash-video-edit で固定です

利用可能なオプション:
gemini-omni-flash-video-edit
:

"gemini-omni-flash-video-edit"

prompt
string
必須

動画編集のテキストプロンプト。期待する編集効果を記述します。日本語・英語に対応します

使用のヒント:

  • 変更したい要素と保持したい部分を記述します(例:「光をより暖かくし、それ以外はそのまま保つ」)
  • ネガティブな要件はプロンプトに直接記述します(例:No dialogue文字を出さない)。本モデルは独立したネガティブプロンプト用のパラメータを提供しません
:

"画面の光をより暖かくし、それ以外はそのまま保つ"

video_urls
string<uri>[]

編集対象の動画の配列。1本のみ対応です

入力要件:

  • 現在は HTTP/HTTPS 動画 URL のみ対応
  • フォーマット:mp4
  • 長さ:310
Required array length: 1 element
:
["https://example.com/source.mp4"]
callback_url
string<uri>

タスク完了後のHTTPSコールバックアドレス

コールバックのタイミング:

  • タスクの完了(completed)、失敗(failed)、キャンセル(cancelled)時にトリガーされます
  • 課金確定後に送信されます

セキュリティ制限:

  • HTTPSプロトコルのみ対応
  • 内部ネットワークIPアドレス(127.0.0.1、10.x.x.x、172.16-31.x.x、192.168.x.x など)へのコールバックは禁止
  • URLの長さは 2048 文字以内

コールバックの仕組み:

  • タイムアウト時間:10
  • 失敗後は最大 3 回まで再試行します(失敗後それぞれ 1 秒/2 秒/4 秒後に再試行します)
  • コールバックのレスポンスボディの形式はタスク照会インターフェースの返却形式と同一です
  • コールバックアドレスが2xxステータスコードを返した場合は成功とみなし、それ以外のステータスコードは再試行をトリガーします
:

"https://your-domain.com/webhooks/video-task-completed"

レスポンス

動画タスクの作成に成功しました

created
integer

タスク作成のタイムスタンプ

:

1757169743

id
string

タスクID

:

"task-unified-1757169743-7cvnl5zw"

model
string

実際に使用されたモデル名

:

"gemini-omni-flash-video-edit"

object
enum<string>

タスクの具体的な種別

利用可能なオプション:
video.generation.task
progress
integer

タスクの進捗率 (0-100)

必須範囲: 0 <= x <= 100
:

0

status
enum<string>

タスクの状態

利用可能なオプション:
pending,
processing,
completed,
failed
:

"pending"

task_info
object

動画タスクの詳細情報

type
enum<string>

タスクの出力タイプ

利用可能なオプション:
text,
image,
audio,
video
:

"video"

usage
object

使用量と課金情報