curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}'
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Natural transition from a morning city skyline to nighttime lights, with a slow camera push-in",
"type": "first_last_frame",
"image_url": "https://example.com/first-frame.jpg",
"end_image_url": "https://example.com/last-frame.jpg",
"resolution": "720p",
"video_length": 10,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mp4"
},
"out_task_id": "seedance2_5_frames_123456"
}'
import requests
url = "https://aireiter.com/api/openapi/submit"
payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": True,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
const url = "https://aireiter.com/api/openapi/submit";
const payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
};
const headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://aireiter.com/api/openapi/submit"
payload := map[string]interface{}{
"model": "seedance2_5",
"params": map[string]interface{}{
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": []interface{}{
"https://example.com/character.jpg",
"https://example.com/product.jpg",
},
"video_url": []interface{}{
"https://example.com/motion-reference.mp4",
},
"audio_url": []interface{}{
"https://example.com/music-reference.mp3",
},
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov",
},
"out_task_id": "seedance2_5_reference_123456",
}
jsonData, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header.Set("Authorization", "Bearer <token>")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
public class Main {
public static void main(String[] args) throws Exception {
String url = "https://aireiter.com/api/openapi/submit";
String payload = """
{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
""";
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(url))
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.POST(HttpRequest.BodyPublishers.ofString(payload))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
<?php
$url = "https://aireiter.com/api/openapi/submit";
$payload = [
"model" => "seedance2_5",
"params" => [
"prompt" => "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type" => "all_reference",
"image_url" => ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url" => ["https://example.com/motion-reference.mp4"],
"audio_url" => ["https://example.com/music-reference.mp3"],
"resolution" => "720p",
"video_length" => 8,
"aspect_ratio" => "16:9",
"generate_audio" => true,
"output_format" => "mov"
],
"out_task_id" => "seedance2_5_reference_123456"
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer <token>",
"Content-Type: application/json"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
require 'net/http'
require 'json'
require 'uri'
url = URI("https://aireiter.com/api/openapi/submit")
payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
}
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = "Bearer <token>"
request["Content-Type"] = "application/json"
request.body = payload.to_json
response = http.request(request)
puts response.body
import Foundation
let url = URL(string: "https://aireiter.com/api/openapi/submit")!
let payload: [String: Any] = [
"model": "seedance2_5",
"params": [
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
],
"out_task_id": "seedance2_5_reference_123456"
]
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.httpBody = try? JSONSerialization.data(withJSONObject: payload)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
if let error = error {
print("Error: \(error)")
return
}
if let data = data, let responseString = String(data: data, encoding: .utf8) {
print(responseString)
}
}
task.resume()
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
var url = "https://aireiter.com/api/openapi/submit";
var payload = @"
{
""model"": ""seedance2_5"",
""params"": {
""prompt"": ""Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound"",
""type"": ""all_reference"",
""image_url"": [
""https://example.com/character.jpg"",
""https://example.com/product.jpg""
],
""video_url"": [
""https://example.com/motion-reference.mp4""
],
""audio_url"": [
""https://example.com/music-reference.mp3""
],
""resolution"": ""720p"",
""video_length"": 8,
""aspect_ratio"": ""16:9"",
""generate_audio"": true,
""output_format"": ""mov""
},
""out_task_id"": ""seedance2_5_reference_123456""
}";
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");
var content = new StringContent(payload, Encoding.UTF8, "application/json");
var response = await client.PostAsync(url, content);
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
}
}
#include <stdio.h>
#include <curl/curl.h>
int main(void) {
CURL *curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
const char *url = "https://aireiter.com/api/openapi/submit";
const char *payload = "{\"model\":\"seedance2_5\",\"params\":{\"prompt\":\"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound\",\"type\":\"all_reference\",\"image_url\":[\"https://example.com/character.jpg\",\"https://example.com/product.jpg\"],\"video_url\":[\"https://example.com/motion-reference.mp4\"],\"audio_url\":[\"https://example.com/music-reference.mp3\"],\"resolution\":\"720p\",\"video_length\":8,\"aspect_ratio\":\"16:9\",\"generate_audio\":true,\"output_format\":\"mov\"},\"out_task_id\":\"seedance2_5_reference_123456\"}";
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(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, payload);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
}
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSURL *url = [NSURL URLWithString:@"https://aireiter.com/api/openapi/submit"];
NSDictionary *payload = @{
@"model": @"seedance2_5",
@"params": @{
@"prompt": @"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
@"type": @"all_reference",
@"image_url": @[
@"https://example.com/character.jpg",
@"https://example.com/product.jpg"
],
@"video_url": @[@"https://example.com/motion-reference.mp4"],
@"audio_url": @[@"https://example.com/music-reference.mp3"],
@"resolution": @"720p",
@"video_length": @8,
@"aspect_ratio": @"16:9",
@"generate_audio": @YES,
@"output_format": @"mov"
},
@"out_task_id": @"seedance2_5_reference_123456"
};
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:payload
options:0
error:&error];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"Bearer <token>" forHTTPHeaderField:@"Authorization"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:jsonData];
NSURLSessionDataTask *task = [[NSURLSession sharedSession]
dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
return;
}
NSString *result = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
NSLog(@"%@", result);
}];
[task resume];
[[NSRunLoop mainRunLoop] run];
}
return 0;
}
(* Requires cohttp and yojson libraries *)
open Lwt
open Cohttp
open Cohttp_lwt_unix
let url = "https://aireiter.com/api/openapi/submit"
let payload = {|{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}|}
let () =
let headers = Header.init ()
|> fun h -> Header.add h "Authorization" "Bearer <token>"
|> fun h -> Header.add h "Content-Type" "application/json"
in
let body = Cohttp_lwt.Body.of_string payload in
let response = Client.post ~headers ~body (Uri.of_string url) >>= fun (resp, body) ->
body |> Cohttp_lwt.Body.to_string >|= fun body_str ->
print_endline body_str
in
Lwt_main.run response
import 'dart:convert';
import 'package:http/http.dart' as http;
void main() async {
final url = Uri.parse('https://aireiter.com/api/openapi/submit');
final payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
};
final response = await http.post(
url,
headers: {
'Authorization': 'Bearer <token>',
'Content-Type': 'application/json'
},
body: jsonEncode(payload),
);
print(response.body);
}
library(httr)
library(jsonlite)
url <- "https://aireiter.com/api/openapi/submit"
payload <- list(
model = "seedance2_5",
params = list(
prompt = "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type = "all_reference",
image_url = list(
"https://example.com/character.jpg",
"https://example.com/product.jpg"
),
video_url = list(
"https://example.com/motion-reference.mp4"
),
audio_url = list(
"https://example.com/music-reference.mp3"
),
resolution = "720p",
video_length = 8,
aspect_ratio = "16:9",
generate_audio = TRUE,
output_format = "mov"
),
out_task_id = "seedance2_5_reference_123456"
)
response <- POST(
url,
add_headers(
Authorization = "Bearer <token>",
`Content-Type` = "application/json"
),
body = toJSON(payload, auto_unbox = TRUE),
encode = "raw"
)
cat(content(response, "text"))
{
"statusCode": 200,
"message": "",
"data": {
"out_task_id": "seedance2_5_reference_123456",
"status": "pending",
"estimated_credits": 100,
"created_at": "2025-12-22T06:03:28.242Z"
}
}
{
"statusCode": 400,
"message": "Invalid request parameters",
"ok": false
}
{
"error": {
"code": 401,
"message": "Authentication failed, please check your API key"
}
}
{
"error": {
"code": 433,
"message": "Insufficient account balance, please recharge and try again"
}
}
{
"error": {
"code": 500,
"message": "Internal server error, please try again later"
}
}
Seedance 2.5
Seedance 2.5 Video Generation
- Supports full reference and first-and-last-frame video generation modes
- Supports image, video, and audio reference materials
- Supports 480p / 720p, 4-30 seconds, and synchronized AI audio
- Supports MP4 and high color accuracy MOV output
- Asynchronous processing mode, returns a task ID for subsequent queries
POST
/
api
/
openapi
/
submit
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}'
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Natural transition from a morning city skyline to nighttime lights, with a slow camera push-in",
"type": "first_last_frame",
"image_url": "https://example.com/first-frame.jpg",
"end_image_url": "https://example.com/last-frame.jpg",
"resolution": "720p",
"video_length": 10,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mp4"
},
"out_task_id": "seedance2_5_frames_123456"
}'
import requests
url = "https://aireiter.com/api/openapi/submit"
payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": True,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
const url = "https://aireiter.com/api/openapi/submit";
const payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
};
const headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://aireiter.com/api/openapi/submit"
payload := map[string]interface{}{
"model": "seedance2_5",
"params": map[string]interface{}{
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": []interface{}{
"https://example.com/character.jpg",
"https://example.com/product.jpg",
},
"video_url": []interface{}{
"https://example.com/motion-reference.mp4",
},
"audio_url": []interface{}{
"https://example.com/music-reference.mp3",
},
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov",
},
"out_task_id": "seedance2_5_reference_123456",
}
jsonData, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header.Set("Authorization", "Bearer <token>")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
public class Main {
public static void main(String[] args) throws Exception {
String url = "https://aireiter.com/api/openapi/submit";
String payload = """
{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
""";
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(url))
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.POST(HttpRequest.BodyPublishers.ofString(payload))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
<?php
$url = "https://aireiter.com/api/openapi/submit";
$payload = [
"model" => "seedance2_5",
"params" => [
"prompt" => "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type" => "all_reference",
"image_url" => ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url" => ["https://example.com/motion-reference.mp4"],
"audio_url" => ["https://example.com/music-reference.mp3"],
"resolution" => "720p",
"video_length" => 8,
"aspect_ratio" => "16:9",
"generate_audio" => true,
"output_format" => "mov"
],
"out_task_id" => "seedance2_5_reference_123456"
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer <token>",
"Content-Type: application/json"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
require 'net/http'
require 'json'
require 'uri'
url = URI("https://aireiter.com/api/openapi/submit")
payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
}
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = "Bearer <token>"
request["Content-Type"] = "application/json"
request.body = payload.to_json
response = http.request(request)
puts response.body
import Foundation
let url = URL(string: "https://aireiter.com/api/openapi/submit")!
let payload: [String: Any] = [
"model": "seedance2_5",
"params": [
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
],
"out_task_id": "seedance2_5_reference_123456"
]
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.httpBody = try? JSONSerialization.data(withJSONObject: payload)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
if let error = error {
print("Error: \(error)")
return
}
if let data = data, let responseString = String(data: data, encoding: .utf8) {
print(responseString)
}
}
task.resume()
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
var url = "https://aireiter.com/api/openapi/submit";
var payload = @"
{
""model"": ""seedance2_5"",
""params"": {
""prompt"": ""Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound"",
""type"": ""all_reference"",
""image_url"": [
""https://example.com/character.jpg"",
""https://example.com/product.jpg""
],
""video_url"": [
""https://example.com/motion-reference.mp4""
],
""audio_url"": [
""https://example.com/music-reference.mp3""
],
""resolution"": ""720p"",
""video_length"": 8,
""aspect_ratio"": ""16:9"",
""generate_audio"": true,
""output_format"": ""mov""
},
""out_task_id"": ""seedance2_5_reference_123456""
}";
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");
var content = new StringContent(payload, Encoding.UTF8, "application/json");
var response = await client.PostAsync(url, content);
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
}
}
#include <stdio.h>
#include <curl/curl.h>
int main(void) {
CURL *curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
const char *url = "https://aireiter.com/api/openapi/submit";
const char *payload = "{\"model\":\"seedance2_5\",\"params\":{\"prompt\":\"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound\",\"type\":\"all_reference\",\"image_url\":[\"https://example.com/character.jpg\",\"https://example.com/product.jpg\"],\"video_url\":[\"https://example.com/motion-reference.mp4\"],\"audio_url\":[\"https://example.com/music-reference.mp3\"],\"resolution\":\"720p\",\"video_length\":8,\"aspect_ratio\":\"16:9\",\"generate_audio\":true,\"output_format\":\"mov\"},\"out_task_id\":\"seedance2_5_reference_123456\"}";
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(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, payload);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
}
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSURL *url = [NSURL URLWithString:@"https://aireiter.com/api/openapi/submit"];
NSDictionary *payload = @{
@"model": @"seedance2_5",
@"params": @{
@"prompt": @"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
@"type": @"all_reference",
@"image_url": @[
@"https://example.com/character.jpg",
@"https://example.com/product.jpg"
],
@"video_url": @[@"https://example.com/motion-reference.mp4"],
@"audio_url": @[@"https://example.com/music-reference.mp3"],
@"resolution": @"720p",
@"video_length": @8,
@"aspect_ratio": @"16:9",
@"generate_audio": @YES,
@"output_format": @"mov"
},
@"out_task_id": @"seedance2_5_reference_123456"
};
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:payload
options:0
error:&error];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"Bearer <token>" forHTTPHeaderField:@"Authorization"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:jsonData];
NSURLSessionDataTask *task = [[NSURLSession sharedSession]
dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
return;
}
NSString *result = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
NSLog(@"%@", result);
}];
[task resume];
[[NSRunLoop mainRunLoop] run];
}
return 0;
}
(* Requires cohttp and yojson libraries *)
open Lwt
open Cohttp
open Cohttp_lwt_unix
let url = "https://aireiter.com/api/openapi/submit"
let payload = {|{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}|}
let () =
let headers = Header.init ()
|> fun h -> Header.add h "Authorization" "Bearer <token>"
|> fun h -> Header.add h "Content-Type" "application/json"
in
let body = Cohttp_lwt.Body.of_string payload in
let response = Client.post ~headers ~body (Uri.of_string url) >>= fun (resp, body) ->
body |> Cohttp_lwt.Body.to_string >|= fun body_str ->
print_endline body_str
in
Lwt_main.run response
import 'dart:convert';
import 'package:http/http.dart' as http;
void main() async {
final url = Uri.parse('https://aireiter.com/api/openapi/submit');
final payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
};
final response = await http.post(
url,
headers: {
'Authorization': 'Bearer <token>',
'Content-Type': 'application/json'
},
body: jsonEncode(payload),
);
print(response.body);
}
library(httr)
library(jsonlite)
url <- "https://aireiter.com/api/openapi/submit"
payload <- list(
model = "seedance2_5",
params = list(
prompt = "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type = "all_reference",
image_url = list(
"https://example.com/character.jpg",
"https://example.com/product.jpg"
),
video_url = list(
"https://example.com/motion-reference.mp4"
),
audio_url = list(
"https://example.com/music-reference.mp3"
),
resolution = "720p",
video_length = 8,
aspect_ratio = "16:9",
generate_audio = TRUE,
output_format = "mov"
),
out_task_id = "seedance2_5_reference_123456"
)
response <- POST(
url,
add_headers(
Authorization = "Bearer <token>",
`Content-Type` = "application/json"
),
body = toJSON(payload, auto_unbox = TRUE),
encode = "raw"
)
cat(content(response, "text"))
{
"statusCode": 200,
"message": "",
"data": {
"out_task_id": "seedance2_5_reference_123456",
"status": "pending",
"estimated_credits": 100,
"created_at": "2025-12-22T06:03:28.242Z"
}
}
{
"statusCode": 400,
"message": "Invalid request parameters",
"ok": false
}
{
"error": {
"code": 401,
"message": "Authentication failed, please check your API key"
}
}
{
"error": {
"code": 433,
"message": "Insufficient account balance, please recharge and try again"
}
}
{
"error": {
"code": 500,
"message": "Internal server error, please try again later"
}
}
AIReiter에서 Seedance 2.5의 모델 이름은
seedance2_5입니다.Authorizations
string
필수
모든 인터페이스는 Bearer Token을 사용하여 인증해야 합니다.API Key 관리 페이지에 접속하여 API Key를 가져온 뒤, 요청 헤더에 다음을 추가하세요:
Authorization: Bearer YOUR_API_KEY
Body
string
필수
모델 이름, 고정값으로 사용:
seedance2_5
object
필수
모델 파라미터 객체.
표시 params 객체 속성
표시 params 객체 속성
string
필수
비디오 생성을 위한 텍스트 설명.주체, 장면, 동작, 카메라 이동, 시각 스타일, 대사 및 환경음을 설명하는 것을 권장합니다.
string
기본값:"all_reference"
참고 모드, 참고 소재의 사용 방식을 결정합니다:
all_reference- 전체 참고 모드, 참고 이미지, 참고 비디오 및 참고 오디오를 사용할 수 있음first_last_frame- 첫 프레임 및 마지막 프레임 모드, 첫 프레임과 선택 가능한 마지막 프레임 이미지를 사용함
string | string[]
참고 이미지 URL.
all_reference모드: 최대 30장 이미지; 단일 이미지 최대 50MB; 이미지 최소 변 길이 300pxfirst_last_frame모드: 첫 프레임 이미지로 사용; 최대 10MB; 이미지 최소 변 길이 300px
string
마지막 프레임 이미지 URL,
first_last_frame 모드에서만 유효합니다.이미지 최대 10MB, 최소 변 길이 300px, URL은 공용 네트워크에서 직접 접근 가능해야 합니다.string | string[]
참고 비디오 URL,
all_reference 모드에서만 유효하며, 최대 9개의 참고 비디오를 지원합니다.비디오 요구 사항:- 단일 비디오 길이 2-30초, 참고 비디오 총 길이는 30초를 초과할 수 없음
- 단일 비디오 최대 200MB
- 프레임 속도 24-60 FPS
- 가로세로 비율 범위 0.4-2.5
- 너비 및 높이 범위 300-6000px
- 총 픽셀 수 범위 409600-8295044
first_last_frame 모드에서는 이 매개변수를 전달하지 마세요.string | string[]
참고 오디오 URL,
all_reference 모드에서만 유효하며, 최대 10개의 오디오를 지원합니다.오디오 요구 사항:- 단일 오디오 길이 2-30초, 참고 오디오 총 길이는 30초를 초과할 수 없음
- WAV, MP3 지원
- 단일 오디오 최대 15MB
first_last_frame 모드에서는 이 매개변수를 전달하지 마세요.string
기본값:"720p"
비디오 해상도:
480p720p- 기본값
integer
기본값:"5"
출력 비디오 길이, 단위는 초입니다.
4에서 30 사이의 정수를 지원합니다.string
기본값:"16:9"
비디오 가로세로 비율:
21:9- 울트라와이드16:9- 가로형, 기본값9:16- 세로형4:3- 표준 가로형3:4- 표준 세로형1:1- 정사각형
boolean
기본값:"true"
비디오와 동기화된 AI 오디오를 생성할지 여부입니다.
true- 오디오 생성, 기본값false- 오디오 생성 안 함
string
기본값:"mp4"
출력 비디오 형식:
mp4- 범용 형식, 파일 크기가 작음, 기본값mov- 고색상 정확도 형식(yuv444p), 후처리 확장 및 합성에 적합
string
필수
요청 측 작업 ID.호출 측에서 생성하고 고유성을 보장해야 하며, 문자, 숫자, 밑줄 및 하이픈을 지원하고 길이는 1-64자입니다. 이후 이 ID를 사용하여 작업 상태와 결과를 조회합니다.
Response
string
요청 측 작업 ID로, 결과 조회에 사용할 수 있습니다.
string
초기 상태이며, 일반적으로
"pending"입니다.number
예상 소모 포인트.
string
생성 시간, ISO 8601 형식.
Query Task
Seedance 2.5는 비동기 처리를 사용합니다. 제출에 성공한 후, 동일한out_task_id를 사용하여 작업을 조회하세요:
curl --request POST \
--url https://aireiter.com/api/openapi/query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"out_task_id": "seedance2_5_task_123456"
}'
output 배열에 생성된 비디오 URL이 포함됩니다. 전체 필드는 Get Task Status를 참조하세요.
Request Examples
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}'
curl --request POST \
--url https://aireiter.com/api/openapi/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedance2_5",
"params": {
"prompt": "Natural transition from a morning city skyline to nighttime lights, with a slow camera push-in",
"type": "first_last_frame",
"image_url": "https://example.com/first-frame.jpg",
"end_image_url": "https://example.com/last-frame.jpg",
"resolution": "720p",
"video_length": 10,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mp4"
},
"out_task_id": "seedance2_5_frames_123456"
}'
import requests
url = "https://aireiter.com/api/openapi/submit"
payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": True,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
const url = "https://aireiter.com/api/openapi/submit";
const payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
};
const headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
};
fetch(url, {
method: "POST",
headers: headers,
body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://aireiter.com/api/openapi/submit"
payload := map[string]interface{}{
"model": "seedance2_5",
"params": map[string]interface{}{
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": []interface{}{
"https://example.com/character.jpg",
"https://example.com/product.jpg",
},
"video_url": []interface{}{
"https://example.com/motion-reference.mp4",
},
"audio_url": []interface{}{
"https://example.com/music-reference.mp3",
},
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov",
},
"out_task_id": "seedance2_5_reference_123456",
}
jsonData, _ := json.Marshal(payload)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
req.Header.Set("Authorization", "Bearer <token>")
req.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.URI;
public class Main {
public static void main(String[] args) throws Exception {
String url = "https://aireiter.com/api/openapi/submit";
String payload = """
{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}
""";
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create(url))
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.POST(HttpRequest.BodyPublishers.ofString(payload))
.build();
HttpResponse<String> response = client.send(request,
HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
}
}
<?php
$url = "https://aireiter.com/api/openapi/submit";
$payload = [
"model" => "seedance2_5",
"params" => [
"prompt" => "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type" => "all_reference",
"image_url" => ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url" => ["https://example.com/motion-reference.mp4"],
"audio_url" => ["https://example.com/music-reference.mp3"],
"resolution" => "720p",
"video_length" => 8,
"aspect_ratio" => "16:9",
"generate_audio" => true,
"output_format" => "mov"
],
"out_task_id" => "seedance2_5_reference_123456"
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer <token>",
"Content-Type: application/json"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
require 'net/http'
require 'json'
require 'uri'
url = URI("https://aireiter.com/api/openapi/submit")
payload = {
model: "seedance2_5",
params: {
prompt: "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type: "all_reference",
image_url: ["https://example.com/character.jpg", "https://example.com/product.jpg"],
video_url: ["https://example.com/motion-reference.mp4"],
audio_url: ["https://example.com/music-reference.mp3"],
resolution: "720p",
video_length: 8,
aspect_ratio: "16:9",
generate_audio: true,
output_format: "mov"
},
out_task_id: "seedance2_5_reference_123456"
}
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = "Bearer <token>"
request["Content-Type"] = "application/json"
request.body = payload.to_json
response = http.request(request)
puts response.body
import Foundation
let url = URL(string: "https://aireiter.com/api/openapi/submit")!
let payload: [String: Any] = [
"model": "seedance2_5",
"params": [
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
],
"out_task_id": "seedance2_5_reference_123456"
]
var request = URLRequest(url: url)
request.httpMethod = "POST"
request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
request.setValue("application/json", forHTTPHeaderField: "Content-Type")
request.httpBody = try? JSONSerialization.data(withJSONObject: payload)
let task = URLSession.shared.dataTask(with: request) { data, response, error in
if let error = error {
print("Error: \(error)")
return
}
if let data = data, let responseString = String(data: data, encoding: .utf8) {
print(responseString)
}
}
task.resume()
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
var url = "https://aireiter.com/api/openapi/submit";
var payload = @"
{
""model"": ""seedance2_5"",
""params"": {
""prompt"": ""Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound"",
""type"": ""all_reference"",
""image_url"": [
""https://example.com/character.jpg"",
""https://example.com/product.jpg""
],
""video_url"": [
""https://example.com/motion-reference.mp4""
],
""audio_url"": [
""https://example.com/music-reference.mp3""
],
""resolution"": ""720p"",
""video_length"": 8,
""aspect_ratio"": ""16:9"",
""generate_audio"": true,
""output_format"": ""mov""
},
""out_task_id"": ""seedance2_5_reference_123456""
}";
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");
var content = new StringContent(payload, Encoding.UTF8, "application/json");
var response = await client.PostAsync(url, content);
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
}
}
#include <stdio.h>
#include <curl/curl.h>
int main(void) {
CURL *curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
const char *url = "https://aireiter.com/api/openapi/submit";
const char *payload = "{\"model\":\"seedance2_5\",\"params\":{\"prompt\":\"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound\",\"type\":\"all_reference\",\"image_url\":[\"https://example.com/character.jpg\",\"https://example.com/product.jpg\"],\"video_url\":[\"https://example.com/motion-reference.mp4\"],\"audio_url\":[\"https://example.com/music-reference.mp3\"],\"resolution\":\"720p\",\"video_length\":8,\"aspect_ratio\":\"16:9\",\"generate_audio\":true,\"output_format\":\"mov\"},\"out_task_id\":\"seedance2_5_reference_123456\"}";
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(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, payload);
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
}
curl_slist_free_all(headers);
curl_easy_cleanup(curl);
}
curl_global_cleanup();
return 0;
}
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSURL *url = [NSURL URLWithString:@"https://aireiter.com/api/openapi/submit"];
NSDictionary *payload = @{
@"model": @"seedance2_5",
@"params": @{
@"prompt": @"Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
@"type": @"all_reference",
@"image_url": @[
@"https://example.com/character.jpg",
@"https://example.com/product.jpg"
],
@"video_url": @[@"https://example.com/motion-reference.mp4"],
@"audio_url": @[@"https://example.com/music-reference.mp3"],
@"resolution": @"720p",
@"video_length": @8,
@"aspect_ratio": @"16:9",
@"generate_audio": @YES,
@"output_format": @"mov"
},
@"out_task_id": @"seedance2_5_reference_123456"
};
NSError *error;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:payload
options:0
error:&error];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"Bearer <token>" forHTTPHeaderField:@"Authorization"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:jsonData];
NSURLSessionDataTask *task = [[NSURLSession sharedSession]
dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
return;
}
NSString *result = [[NSString alloc] initWithData:data
encoding:NSUTF8StringEncoding];
NSLog(@"%@", result);
}];
[task resume];
[[NSRunLoop mainRunLoop] run];
}
return 0;
}
(* Requires cohttp and yojson libraries *)
open Lwt
open Cohttp
open Cohttp_lwt_unix
let url = "https://aireiter.com/api/openapi/submit"
let payload = {|{
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": [
"https://example.com/character.jpg",
"https://example.com/product.jpg"
],
"video_url": [
"https://example.com/motion-reference.mp4"
],
"audio_url": [
"https://example.com/music-reference.mp3"
],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
}|}
let () =
let headers = Header.init ()
|> fun h -> Header.add h "Authorization" "Bearer <token>"
|> fun h -> Header.add h "Content-Type" "application/json"
in
let body = Cohttp_lwt.Body.of_string payload in
let response = Client.post ~headers ~body (Uri.of_string url) >>= fun (resp, body) ->
body |> Cohttp_lwt.Body.to_string >|= fun body_str ->
print_endline body_str
in
Lwt_main.run response
import 'dart:convert';
import 'package:http/http.dart' as http;
void main() async {
final url = Uri.parse('https://aireiter.com/api/openapi/submit');
final payload = {
"model": "seedance2_5",
"params": {
"prompt": "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
"type": "all_reference",
"image_url": ["https://example.com/character.jpg", "https://example.com/product.jpg"],
"video_url": ["https://example.com/motion-reference.mp4"],
"audio_url": ["https://example.com/music-reference.mp3"],
"resolution": "720p",
"video_length": 8,
"aspect_ratio": "16:9",
"generate_audio": true,
"output_format": "mov"
},
"out_task_id": "seedance2_5_reference_123456"
};
final response = await http.post(
url,
headers: {
'Authorization': 'Bearer <token>',
'Content-Type': 'application/json'
},
body: jsonEncode(payload),
);
print(response.body);
}
library(httr)
library(jsonlite)
url <- "https://aireiter.com/api/openapi/submit"
payload <- list(
model = "seedance2_5",
params = list(
prompt = "Cinematic product short film, keep the appearance of the person and product consistent, with smooth camera orbiting and natural ambient sound",
type = "all_reference",
image_url = list(
"https://example.com/character.jpg",
"https://example.com/product.jpg"
),
video_url = list(
"https://example.com/motion-reference.mp4"
),
audio_url = list(
"https://example.com/music-reference.mp3"
),
resolution = "720p",
video_length = 8,
aspect_ratio = "16:9",
generate_audio = TRUE,
output_format = "mov"
),
out_task_id = "seedance2_5_reference_123456"
)
response <- POST(
url,
add_headers(
Authorization = "Bearer <token>",
`Content-Type` = "application/json"
),
body = toJSON(payload, auto_unbox = TRUE),
encode = "raw"
)
cat(content(response, "text"))
{
"statusCode": 200,
"message": "",
"data": {
"out_task_id": "seedance2_5_reference_123456",
"status": "pending",
"estimated_credits": 100,
"created_at": "2025-12-22T06:03:28.242Z"
}
}
{
"statusCode": 400,
"message": "Invalid request parameters",
"ok": false
}
{
"error": {
"code": 401,
"message": "Authentication failed, please check your API key"
}
}
{
"error": {
"code": 433,
"message": "Insufficient account balance, please recharge and try again"
}
}
{
"error": {
"code": 500,
"message": "Internal server error, please try again later"
}
}
Mode Rules
| type | 사용 가능한 소재 | 소재 제한 |
|---|---|---|
all_reference | image_url, video_url, audio_url | 최대 30장 이미지, 9개 비디오, 10개 오디오 |
first_last_frame | image_url, end_image_url | 첫 프레임과 마지막 프레임 이미지는 필요에 따라 제공하세요. 비디오나 오디오는 전송하지 마세요 |
모든 소재 URL은 공용 네트워크에서 직접 액세스할 수 있어야 합니다. 작업은 비동기적으로 처리되므로, 제출 요청의 HTTP 연결을 사용해 최종 비디오를 기다리지 마세요.