Edit in GitHubLog an issue

Get task status and results

Get the status and results of a Lightroom API job.

Use the Job ID with the href link that's returned in the response to poll for the status of a Lightroom API job. When a successful job completes, the output file is available at the href link in the response.

If the job fails due to an error, the errorDetails field in the response will contain the details of the failure.

Copied to your clipboard
curl -X GET \
https://image.adobe.io/lrService/status/<JOB_ID> \
-H "Authorization: Bearer ${TOKEN}" \
-H "x-api-key: ${API_KEY}" \
-H "Content-Type: application/json" \

Example response

Copied to your clipboard
{
"jobId":"<JOB_ID>",
"created":"2018-01-04T12:57:15.12345:Z",
"modified":"2018-01-04T12:58:36.12345:Z",
"outputs":[
{
"input":"<INPUT_FILE_HREF>",
"status":"succeeded",
"_links":{
"self":
{
"href":"<OUTPUT_FILE_HREF>",
"storage":"<STORAGE_LOCATION>"
}
}
}
],
"_links":{
"self":{
"href":"https://image.adobe.io/lrService/status/<JOB_ID>"
}
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2025 Adobe. All rights reserved.