# Generate Video from Tailored Image (Beta) Note: This is a V2 API endpoint and uses the V2 base URL (https://engine.prod.bria-api.com/v2). (Beta - V2 API Feature) Initiates an asynchronous job to generate a 5-second MP4 video file animating a source image created by a tailored model. Model Compatibility: This endpoint supports source images generated by ALL tailored models, including: - Legacy versions (light, max, bria-2.3, bria-3.2) - New FIBO models Deprecation Notice for Legacy Models: Support for generating video from images created by legacy models will cease on July 1, 2026. Asynchronous Requests and the Status Service Bria API v2 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. Endpoint: POST /video/generate/tailored/image-to-video ## Header parameters: - `api_token` (string, required) Your API token. ## Request fields (application/json): - `model_id` (string) The ID of the tailored model that generated the input image. - `image` (string, required) Publicly accessible URL or base64 string of the source image. - `seed` (integer) Optional seed for reproducible results. ## Response 202 fields (application/json): - `request_id` (string) The unique identifier for this asynchronous request. Use this with the Status Service. - `status_url` (string) The URL to poll for the status of the generation job. ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 404 fields ## Response 415 fields ## Response 422 fields ## Response 429 fields ## Response 500 fields