Seamlessly integrate Algolia’s APIs into your LLM workflows with Algolia's new Model Context Protocol (MCP) server. Explore on GitHub.

Search dictionary entries

Searches for standard and custom dictionary entries.

Usage

Required ACL: settings
1
2
3
4
5
6
7
8
9
10
using Algolia.Search.Clients;
using Algolia.Search.Http;
using Algolia.Search.Models.Search;

var client = new SearchClient(new SearchConfig("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY"));

var response = await client.SearchDictionaryEntriesAsync(
  Enum.Parse<DictionaryType>("Stopwords"),
  new SearchDictionaryEntriesParams { Query = "about" }
);
Did you find this page helpful?
C# API clients v7