Skip to main content
POST
/
v3
/
async
/
flux-2-pro
Flux 2 Pro Image Gen
curl --request POST \
  --url https://api.novita.ai/v3/async/flux-2-pro \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "seed": 123,
  "size": "<string>",
  "images": [
    {}
  ],
  "prompt": "<string>"
}
'
{
  "task_id": "<string>"
}
FLUX.2 [pro] from Black Forest Labs delivers production-grade text-to-image generation with enhanced realism, sharper text rendering, and native editing for reliable, repeatable results. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
This is an asynchronous API; only the task_id will be returned. You should use the task_id to request the Task Result API to retrieve the video generation results.

Request Headers

Content-Type
string
required
Supports: application/json
Authorization
string
required
Bearer authentication format, for example: Bearer {{API Key}}.

Request Body

seed
integer
Random seed for generation. -1 means use a random seed. Range: -1 to 2147483647Value range: [-1, 2147483647]
size
string
Pixel size (width*height) of the output media. Each dimension ranges from 256 to 1536 pixels
images
array
A list of input image URLs for editing. Up to 3 images are supportedArray length: 1 - 3
prompt
string
required
A text prompt describing the expected editing effect for the image

Response

task_id
string
required
Use the task_id to request the Task Result API to retrieve the generated outputs.