curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "flux-2-pro",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "The jar in image 1 is filled with capsules exactly same as image 2 with the exact logo",
"size": "1:1",
"resolution": "1K"
}
}
'
{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}Flux
Flux.2 Image Generation
32B parameter image generation model from Black Forest Labs with multi-reference support and superior text rendering
POST
/
api
/
generate
/
submit
curl --request POST \
--url https://api.vidgo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "flux-2-pro",
"callback_url": "https://your-domain.com/callback",
"input": {
"prompt": "The jar in image 1 is filled with capsules exactly same as image 2 with the exact logo",
"size": "1:1",
"resolution": "1K"
}
}
'
{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}- After submission, a
task_idwill be returned. If you provided acallback_url, when the task status becomesfinishedorfailed, a POST request will be sent to thecallback_url. - Regardless of whether
callback_urlis provided, you can retrieve the response result through the unified Query Task Status endpoint.
Flux 2 Image Generation
FLUX.2 is a 32 billion parameter image generation and editing model from Black Forest Labs. It combines text-to-image and multi-image editing in a single architecture, delivering photoreal images with clean typography at resolutions up to 2K. Supports referencing up to 8 images simultaneously with excellent character, product, and style consistency.Available Models
- flux-2-pro - High-fidelity text-to-image generation for production deployments
- flux-2-pro-edit - Advanced multi-reference image editing with up to 8 input images
- flux-2-flex - Adjustable speed vs. quality balance for flexible workflows
- flux-2-flex-edit - Flexible image editing with multi-reference support
Authorizations
All API endpoints require Bearer Token authentication
Get your API Key:
Visit the API Key Management Page to get your API Key
Add it to the request header:
Authorization: Bearer YOUR_API_KEY
Body
application/json
Flux 2 model identifier
Available options:
flux-2-pro, flux-2-pro-edit, flux-2-flex, flux-2-flex-edit Input parameters for generation
Show child attributes
Show child attributes
Webhook callback URL for result notifications
Example:
"https://your-domain.com/callback"