Retrieve Auto-tags
GET/api/v1/assets/:asset_id/addons/image_analysis
API to retrieve an image asset's auto-tag data.
Response JSON
{
"labelAnnotations": [
{
"score": 0.8699386,
"data": "alabel"
}
],
"bestGuessLabels": [
{
"label": "red elephant",
"languageCode": "en"
}
]
}
| Parameter | Description |
|---|---|
labelAnnotations | List of labels with confidence score (0 = least confident, 1 = very confident) |
bestGuessLabels | Best guess summary of the image |
Request
Responses
- 200
- 401
- 403
- 500
Successful operation
Unauthorized - Invalid or missing authentication
Forbidden - Insufficient permissions
Internal server error