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 } ] }
Classify images into predefined categories
Show Result