Classify images into predefined categories using computer vision models.
Body
Array of image files to classify
Response
List of classification results
The predicted category label
Confidence score for the prediction
Status Codes
Bad Request - Validation error occurred
Unauthorized - Authentication failed
curl -X POST https://api.woolball.xyz/v1/image-classification \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-F "images=@image.jpg"
{
"data": [
{
"label": "cat",
"score": 0.95
},
{
"label": "pet",
"score": 0.89
}
]
}