Path parameters
-
id
string Required The synonyms set identifier to retrieve.
GET
/_synonyms/{id}
curl \
--request GET 'http://api.example.com/_synonyms/{id}' \
--header "Authorization: $API_KEY"
Response examples (200)
A successful response from `GET _synonyms/my-synonyms-set`.
{
"count": 3,
"synonyms_set": [
{
"id": "test-1",
"synonyms": "hello, hi"
},
{
"id": "test-2",
"synonyms": "bye, goodbye"
},
{
"id": "test-3",
"synonyms": "test => check"
}
]
}