The Object Detection API provides fast and accurate image object recognition using advanced neural networks developed by machine learning experts.
https://api.api-ninjas.com/v1/objectdetection
Given an input image, return a list of detected objects labels, confidence percentages and bounding boxes. Objects with confidence less than 0.3 (30%) are filtered out.
image
requiredImage file. Must be either JPEG or PNG format and smaller than 2000 by 2000.
X-Api-Key
requiredAPI Key associated with your account.
https://api.api-ninjas.com/v1/objectdetection
Headers
X-Api-Key
Log in or sign up to get your API Key
1
1
2
3
curl -X POST "https://api.api-ninjas.com/v1/objectdetection" \
-H "X-Api-Key: YOUR_API_KEY" \
-F "image=@YOUR_IMAGE.jpeg"
If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.