Генерация видео
Создаёт задачу генерации видео.
Возвращает task_id, по которому затем нужно опросить
/v1/videos/fetch.
curl --request POST \
--url https://api.nixai.ru/v1/videos/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": [
"https://example.com/photo.jpg"
],
"videos": [
"https://example.com/clip.mp4"
]
}
'import requests
url = "https://api.nixai.ru/v1/videos/generations"
payload = {
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": ["https://example.com/photo.jpg"],
"videos": ["https://example.com/clip.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: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.nixai.ru/v1/videos/generations';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nixai.ru/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' => 'happyhorse-1.0',
'prompt' => 'Красивый закат над морем',
'duration' => 10,
'size' => '1080p',
'aspect_ratio' => '16:9',
'images' => [
'https://example.com/photo.jpg'
],
'videos' => [
'https://example.com/clip.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.nixai.ru/v1/videos/generations"
payload := strings.NewReader("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.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.nixai.ru/v1/videos/generations")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nixai.ru/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\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("Authorization", "Bearer <token>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.nixai.ru/v1/videos/generations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": [
"https://example.com/photo.jpg"
],
"videos": [
"https://example.com/clip.mp4"
]
}'import Foundation
let parameters = [
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": ["https://example.com/photo.jpg"],
"videos": ["https://example.com/clip.mp4"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.nixai.ru/v1/videos/generations")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}")
val request = Request.Builder()
.url("https://api.nixai.ru/v1/videos/generations")
.post(body)
.addHeader("Authorization", "Bearer <token>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falsefalse{
"task_id": "b22c9ae2-0b55-4398-88df-0191aae664f0"
}Authorizations
Заголовок авторизации вида Bearer <token>, где <token> — ваш API-ключ.
Body
Идентификатор видео-модели.
happyhorse-1.0, happyhorse-1.1 "happyhorse-1.0"
Текстовое описание желаемого видео.
"Красивый закат над морем"
Длительность видео в секундах. Обязательный параметр.
Допустимы целые значения от 3 до 15.
3 <= x <= 1510
Разрешение итогового видео. Поддерживаются 720p и 1080p.
720p, 1080p "1080p"
Соотношение сторон видео. По умолчанию выбирается автоматически наиболее подходящее.
16:9, 9:16, 4:3, 3:4, 1:1 "16:9"
Список URL изображений для генерации видео на их основе. Максимум 9.
9["https://example.com/photo.jpg"]
Список URL видео для генерации видео на их основе. Можно передать максимум 1 видео длительностью от 2 до 10 секунд.
1["https://example.com/clip.mp4"]
Response
Задача создана
Идентификатор задачи для последующего опроса через fetch.
"b22c9ae2-0b55-4398-88df-0191aae664f0"
Was this page helpful?
curl --request POST \
--url https://api.nixai.ru/v1/videos/generations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": [
"https://example.com/photo.jpg"
],
"videos": [
"https://example.com/clip.mp4"
]
}
'import requests
url = "https://api.nixai.ru/v1/videos/generations"
payload = {
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": ["https://example.com/photo.jpg"],
"videos": ["https://example.com/clip.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: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.nixai.ru/v1/videos/generations';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.nixai.ru/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' => 'happyhorse-1.0',
'prompt' => 'Красивый закат над морем',
'duration' => 10,
'size' => '1080p',
'aspect_ratio' => '16:9',
'images' => [
'https://example.com/photo.jpg'
],
'videos' => [
'https://example.com/clip.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.nixai.ru/v1/videos/generations"
payload := strings.NewReader("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.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.nixai.ru/v1/videos/generations")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nixai.ru/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\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}"
response = http.request(request)
puts response.read_body$headers=@{}
$headers.Add("Authorization", "Bearer <token>")
$headers.Add("Content-Type", "application/json")
$response = Invoke-WebRequest -Uri 'https://api.nixai.ru/v1/videos/generations' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": [
"https://example.com/photo.jpg"
],
"videos": [
"https://example.com/clip.mp4"
]
}'import Foundation
let parameters = [
"model": "happyhorse-1.0",
"prompt": "Красивый закат над морем",
"duration": 10,
"size": "1080p",
"aspect_ratio": "16:9",
"images": ["https://example.com/photo.jpg"],
"videos": ["https://example.com/clip.mp4"]
] as [String : Any?]
let postData = try JSONSerialization.data(withJSONObject: parameters, options: [])
let url = URL(string: "https://api.nixai.ru/v1/videos/generations")!
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.timeoutInterval = 10
request.allHTTPHeaderFields = [
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
]
request.httpBody = postData
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);using RestSharp;
var options = new RestClientOptions("https://api.nixai.ru/v1/videos/generations");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
request.AddJsonBody("{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}", false);
var response = await client.PostAsync(request);
Console.WriteLine("{0}", response.Content);const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
model: 'happyhorse-1.0',
prompt: 'Красивый закат над морем',
duration: 10,
size: '1080p',
aspect_ratio: '16:9',
images: ['https://example.com/photo.jpg'],
videos: ['https://example.com/clip.mp4']
})
};
fetch('https://api.nixai.ru/v1/videos/generations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, stdout);
curl_easy_setopt(hnd, CURLOPT_URL, "https://api.nixai.ru/v1/videos/generations");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "Authorization: Bearer <token>");
headers = curl_slist_append(headers, "Content-Type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}");
CURLcode ret = curl_easy_perform(hnd);val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"model\": \"happyhorse-1.0\",\n \"prompt\": \"Красивый закат над морем\",\n \"duration\": 10,\n \"size\": \"1080p\",\n \"aspect_ratio\": \"16:9\",\n \"images\": [\n \"https://example.com/photo.jpg\"\n ],\n \"videos\": [\n \"https://example.com/clip.mp4\"\n ]\n}")
val request = Request.Builder()
.url("https://api.nixai.ru/v1/videos/generations")
.post(body)
.addHeader("Authorization", "Bearer <token>")
.addHeader("Content-Type", "application/json")
.build()
val response = client.newCall(request).execute()falsefalse{
"task_id": "b22c9ae2-0b55-4398-88df-0191aae664f0"
}