Search APIs
Once you have created a configuration, you can start building your own semantic search and recommender application with the following API calls:
GET /api/configurations/{configId}/suggestConcepts
– Returns a list of concepts for the provided text fragment. This API endpoint comes handy if you are building a search box with the autocomplete functionality.POST /api/configurations/{configId}/search
– Returns results for the provided search query along with a list of all facets available for the configuration.GET /api/configurations/{configId}/getSimilar
– Returns a list of similar documents.GET /api/configurations/{configId}/getRecommendations
– Returns a list of recommended documents.POST /api/configurations/{configId}/extractConcepts
– Returns a list of concepts extracted from a provided text input.