Analyze
Post cost
Estimate cost of a generation
POST
Getting started
This endpoint allows you to estimate cost by accepting identical parameters to the POST /v2/generate
endpoint. You can use this to preview the generation cost before sending/performing the actual request.
The response will include the estimated frame count and cost for the generation with the provided parameters.
Authorizations
Body
application/json
name of the model to use for generation.
Available options:
lipsync-2
, lipsync-1.9.0-beta
, lipsync-1.8.0
, lipsync-1.7.1
, lipsync-1.6.0
Example:
"lipsync-1.9.0-beta"
Array of input objects. Must include one video input and either an audio or text input.
Example:
[
{
"type": "video",
"url": "https://synchlabs-public.s3.us-west-2.amazonaws.com/david_demo_shortvid-03a10044-7741-4cfc-816a-5bccd392d1ee.mp4"
},
{
"type": "audio",
"url": "https://synchlabs-public.s3.us-west-2.amazonaws.com/david_demo_shortaud-27623a4f-edab-4c6a-8383-871b18961a4a.wav"
}
]
additional options available for generation.
webhook url for generation status updates. once the generation completes we will send a POST request to the webhook url with the generation data.
Example:
"https://your-server.com/webhook"