Path parameters

  • id string Required

    The synonyms set identifier to retrieve.

Query parameters

  • from number

    The starting offset for query rules to retrieve.

  • size number

    The max number of query rules to retrieve.

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • count number Required

      The total number of synonyms rules that the synonyms set contains.

    • synonyms_set array[object] Required

      Synonym rule details.

      Hide synonyms_set attributes Show synonyms_set attributes object
GET /_synonyms/{id}
curl \
 --request GET http://api.example.com/_synonyms/{id} \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "count": 42.0,
  "synonyms_set": [
    {
      "id": "string",
      "synonyms": "string"
    }
  ]
}