Analysis
Analyze - AI Vision General
The General mode serves a wide array of applications by providing detailed answers to diverse questions about an image. Users can inquire about any aspect of an image, such as identifying objects, understanding scenes, or interpreting text within the image.
post/analyze/ai_vision_general
Request body
Example request
{
"source": {
"asset_id": "e12345b5c456c8901bbb0efc00c0fcf",
"uri": "https://res.cloudinary.com/demo/image/upload/sample.jpg"
},
"notification_url": "https://path.to/webhook"
}Response
Analysis succeeded
Example response
{
"data": {
"analysis": {
"responses": [
{
"value": "The image contains one cat."
},
{
"value": "The cat is on top of the table."
}
],
"model_version": 1
}
},
"limits": {
"items": [
{
"type": "ai_vision",
"used_by_request": 123,
"remaining": 500,
"limit": 10000,
"reset_time": "2024-01-20T12:34:56Z"
}
]
},
"request_id": "17c3b70c5096df0e77e838323abb7029"
}