// Searching for "street" in synonyms and one-way synonyms;// fetch the second page with 10 hits per pagevar result = index.SearchSynonyms( new SynonymQuery ("street") { Type = "synonym, oneWaySynonym" Page = 1, HitsPerPage = 10 });
Restrict the search to a specific type of synonym. Use an empty string to search all types (default behavior).
Multiple types can be specified using a comma-separated list or an array. The allowed types are:
This section shows the JSON response returned by the API.
Each API client wraps this response in language-specific objects, so the structure may vary.
To view the response, use the getLogs method.
Don’t rely on the order of properties—JSON objects don’t preserve key order.