## Generate lip sync from uploaded media **post** `/v1/lipsync/generate-with-media` Starts a lip sync job by uploading one video file and one audio file as multipart form-data. ### Returns - `LipsyncGenerate = object { request_id, status }` - `request_id: string` Identifier of the created lip sync request. - `status: "success"` Current state of the newly created request. - `"success"` ### Example ```http curl https://api.chamelaion.com/api/v1/lipsync/generate-with-media \ -H 'Content-Type: multipart/form-data' \ -H "x-api-key: $CHAMELAION_API_KEY" \ -F 'audio=@/path/to/audio' \ -F 'video=@/path/to/video' ``` #### Response ```json { "status": "success", "request_id": "3b7df3e8-f578-44de-b4f5-5f58dd6b89e0" } ```