@Cho, Ray Yes, you can get this information with the current Analyze API. Please use the query parameter "Objects" in the query to get this information. For example if I use this image, the response displays the following in the response along with confidence and boundary co-ordinates.
"object": "Strawberry",
"confidence": 0.588,
"parent": {
"object": "Fruit",
"confidence": 0.612,
"parent": {
"object": "Food",
"confidence": 0.62
}
}
The post query I used in this case is the following, Please note that this feature is only available in English.
https://eastus.api.cognitive.microsoft.com/vision/v2.0/analyze?visualFeatures=Objects&language=en
If the above response is helpful, please accept the same as answer.