The closest equivalent is Conceptual Concepts . It works by making graphs of concepts in the corpus, with each concept having a path inside this graph. Many Concept Insights APIs are designed to search for text documents, but you can use related_concepts endpoints to extend the concept. For example, the following query concepts related to IBM Watson and Business:
curl -u "{username}":"{ci-password}" -G -d "concepts=[\"/graphs/wikipedia/en-latest/concepts/IBM_Watson\",\"/graphs/wikipedia/en-latest/concepts/Business\"]&level=1&limit=2" "https://gateway.watsonplatform.net/concept-insights/api/v2/graphs/wikipedia/en-latest/related_concepts"
returns this:
{ "concepts": [ { "score":0.7795701, "concept": { "id":"/graphs/wikipedia/en-20120601/concepts/Business_intelligence", "label":"Business intelligence" } }, { "score":0.7564283, "concept": { "id":"/graphs/wikipedia/en-20120601/concepts/Data_model", "label":"Data model" } } ] }
which goes to Business Intelligence and Data Model.
source share