GET
/
v1
/
ai
/
image-upscaler
/
{task-id}
curl --request GET \
  --url https://api.freepik.com/v1/ai/image-upscaler/{task-id} \
  --header 'x-freepik-api-key: <api-key>'
{
  "data": {
    "generated": [
      "https://ai-statics.freepik.com/completed_task_image.jpg"
    ],
    "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
    "status": "COMPLETED"
  }
}

Authorizations

x-freepik-api-key
string
header
required

Your Freepik API key. Required for authentication. Learn how to obtain an API key

Path Parameters

task-id
string
required

ID of the task

Response

200
application/json
OK - The task exists and the status is returned
data
object
required
Example:
{
  "task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
  "status": "IN_PROGRESS",
  "generated": [
    "https://openapi-generator.tech",
    "https://openapi-generator.tech"
  ]
}