List synonyms sets

edit

Retrieves a summary of all defined synonyms sets.

This API allows to retrieve the total number of synonyms sets defined. For each synonyms set, its identifier and the total number of defined synonym rules is returned.

Request

edit

GET _synonyms

Prerequisites

edit

Requires the manage_search_synonyms cluster privilege.

Query parameters

edit
from
(Optional, integer) Starting offset for synonyms sets to retrieve. Defaults to 0.
size
(Optional, integer) Specifies the maximum number of synonyms sets to retrieve. Defaults to 10.

Examples

edit

The following example retrieves all defined synonyms sets:

resp = client.synonyms.get_synonyms_sets()
print(resp)
response = client.synonyms.get_synonyms_sets
puts response
const response = await client.synonyms.getSynonymsSets();
console.log(response);
GET _synonyms

A sample response:

{
  "count": 3,
  "results": [
    {
      "synonyms_set": "ecommerce-synonyms",
      "count": 2
    },
    {
      "synonyms_set": "my-synonyms-set",
      "count": 3
    },
    {
      "synonyms_set": "new-ecommerce-synonyms",
      "count": 1
    }
  ]
}