GET
https://api.unifically.com
/
flux.2-pro
/
status
/
{task_id}
Check Status
curl --request GET \
  --url https://api.unifically.com/flux.2-pro/status/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "data": {
    "status": "processing",
    "task_id": "dd55ae25-adff-47a0-9194-6a37845b58e4"
  }
}
Retrieve the status and results of your Flux.2 Pro generation tasks.

Request

curl --request GET \
  --url https://api.unifically.com/flux.2-pro/status/dd55ae25-adff-47a0-9194-6a37845b58e4 \
  --header 'Authorization: Bearer YOUR_API_KEY'
Replace the task ID with your actual task_id.

Response (Processing)

{
  "code": 200,
  "data": {
    "status": "processing",
    "task_id": "dd55ae25-adff-47a0-9194-6a37845b58e4"
  }
}

Response (Completed)

{
  "code": 200,
  "data": {
    "status": "completed",
    "task_id": "dd55ae25-adff-47a0-9194-6a37845b58e4",
    "output": {
      "image_url": "https://files.storagecdn.online/image/generated.png"
    }
  }
}

Response Fields

code
integer
default:"200"
HTTP status code (200 for success)
data
object
Task data
task_id
string
Unique identifier for the task
status
string
Task status: processing, completed, failed
output
object
Output data (only present when status is completed)
image_url
string
URL to download the generated image