Detect labels in an image.
POST/ai/pictureobjectrecognition
Detects labels in an image using the OpenAI Vision model.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
imageUrlstringrequired
The URL of the image to analyze.
Example:
https://example.com/image.jpg
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
recognizedLabelsstring[]required
List of recognized labels in the image.
{
"recognizedLabels": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}