Search Dictionary Entries
$client->searchDictionaryEntries( string dictionary, string query, // any params and/or requestOptions );
About this method
You are currently reading the JavaScript API client v4 documentation. Check our migration guide to learn how to upgrade from v3 to v4. You can still access the v3 documentation.
You are currently reading the Ruby API client v2 documentation. Check our migration guide to learn how to upgrade from v1 to v2. You can still access the v1 documentation.
Search for entries in a given dictionary
Examples
Search stopword entries
1
2
3
4
$client->searchDictionaryEntries('stopwords', 'und');
$client->searchDictionaryEntries('stopwords', 'und',
array('language' => 'de')
);
Parameters
dictionary
|
type: string
Required
Type of the dictionary entries you want to search.
Can be either |
query
|
type: string
Required
Term to search in the dictionary. st |
params
|
Optional
Structure containing specific dictionary_search_parameter |
requestOptions
|
type: key-value mapping
default: No request options
Optional
A mapping of |
dictionary_search_parameter
page
|
type: integer
default: 0
Optional
Page to fetch. |
hitsPerPage
|
type: integer
default: 0
Optional
Number of hits retrieved per page. Accepted range: [1, 1000]. |
language
|
type: string
Optional
Language ISO code supported by the dictionary (for example “en” for English). |
Response
In this section we document the JSON response returned by the API. Each language will encapsulate this response inside objects specific to the language and/or the implementation. So the actual type in your language might differ from what is documented.
JSON format
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"hits": [
{
"objectID": "under",
"language": "en",
"word": "under",
"type": "custom"
},
{
// ...
}
],
"nbHits": 2,
"page": 0
"nbPages": 1
}
hits
|
list of stopword_entry|plural_entry|compound_entry
An array of dictionary entries. Can contain either a list of stopword_entry, plural_entry or compound_entry. |
nbHits
|
integer
Number of entries matching the query. |
page
|
integer
Returned page number (zero-based). |
nbPages
|
integer
Total number of pages. |
dictionary_entry ➔ stopword_entry
objectID
|
string
Unique identifier of the entry. |
language
|
string
Language ISO code supported by the dictionary (for example “en” for English). |
word
|
string
The stopword you want to add or update. When |
state
|
string
The state of the entry:
|
type
|
string
Set to “standard” if it’s a default Algolia entry. Otherwise set to “custom”. |
dictionary_entry ➔ plural_entry
objectID
|
string
Unique identifier of the entry. |
language
|
string
Language ISO code supported by the dictionary (for example “en” for English). |
words
|
string
Required
List of word declensions. The entry overrides existing entries when any of these words exist in the standard dictionary provided by Algolia. |
type
|
string
Set to “standard” if it’s a default Algolia entry. Otherwise set to “custom”. |
dictionary_entry ➔ compound_entry
objectID
|
string
Unique identifier of the entry. |
language
|
string
Language ISO code supported by the dictionary (for example |
word
|
string
|
decomposition
|
string array
|
type
|
string
Set to “standard” if it’s a default Algolia entry. Otherwise set to “custom”. |