Skip to main content

Scene Classification Job

GET 

/api/v1/assets/:asset_id/addons/scene_classification/jobs/:job_id

Retrieve result after scene classification using job_id.

Response JSON

{
"status": "OK",
"output": {
"data": [
{ "label": "amusement_park", "confidence": 0.637 },
{ "label": "tower", "confidence": 0.430 },
{ "label": "castle", "confidence": 0.297 }
]
}
}
KeyValueDescription
statusstringCan be "QUEUED", "IN_PROGRESS", "OK", "ERROR"
outputJSONAn JSON Object containing the result

Request

Responses

Successful operation