POST
/
api
/
ai
/
images
/
modify
/
v3
curl --request POST \
  --url https://api.worqhat.com/api/ai/images/modify/v3 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form similarity=40 \
  --form 'modification=Change this into a night scenery' \
  --form output_type=url \
  --form control_function=none
{
  "image": "https://storage.googleapis.com/.../modified-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

Response

200
application/json
Image modified successfully.

The response is of type object.