latestOpenAPI 3.0.02026-08-10380208.8 KB

806c6d31631b

Video Generation

Generate Video from Tailored Image (Beta)

(Beta) Initiates an asynchronous job to generate a 5-second MP4 video file animating a source image created by a tailored model.

Asynchronous Requests and the Status Service Bria API endpoints process requests asynchronously by default. When you make an asynchronous request, the API immediately returns a request_id and a status_url instead of the final result. Use the Status Service to track the request's progress until it reaches a completed state.

See the full guide at Status Service Documentation for complete details and usage examples.

On successful initiation, this endpoint returns a 202 Accepted response. Poll the status_url or use the Status Service with the request_id to check for job completion. Once 'Completed', the status response will contain the URL to the generated MP4 video.

post/video/generate/tailored/image-to-video

Headers

api_tokenstring required

Your API token.

Request body

tailored_model_idstring required

The ID of the tailored model that generated the input image.

imagestring required

Publicly accessible URL or base64 string of the source image.

seedinteger

Optional seed for reproducible results.

Response

Accepted. The video generation job was successfully initiated. You can track the progress and retrieve the final result using the Status Service. For more details, refer to the Status Service section.

request_idstring

The unique identifier for this asynchronous request.

status_urlstring uri

The URL to poll for the status of the generation job.