POST
/
api
/
ai
/
images
/
modify
/
v3
/
recreate
curl --request POST \
  --url https://api.worqhat.com/api/ai/images/modify/v3/recreate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form output_type=url \
  --form 'description=An owl sitting on a branch with enhanced details.'
{
  "image": "https://example.com/recreated-image.png",
  "processing_time": 15938.768708,
  "processing_id": "1e01b632-2d8f-4f71-8a27-36e219d67be5"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
existing_image
file
required

The original image to be recreated.

description
string
required

A textual description of modifications or improvements.

output_type
string
required

Specifies the format of the generated image (e.g., URL).

Response

200
application/json
Image generated successfully
image
string
required

The generated image URL.

processing_time
number
required

The time taken to process the request.

processing_id
string
required

A unique identifier for the request.