Get Synonyms by Language or Synonym Group
curl --request GET \
--url https://api.cludo.com/api/synonymsgroup/{identifier} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.cludo.com/api/synonymsgroup/{identifier}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.cludo.com/api/synonymsgroup/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.cludo.com/api/synonymsgroup/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"groupId": 123,
"words": [
"<string>"
],
"language": "<string>"
}{
"message": "unauthorized"
}{
"message": "<string>"
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}Synonyms
Get Synonyms by Language or Synonym Group
Path segment is overloaded: use a language code (for example en) to list all synonym groups for that language (getSynonymsByLanguage). Use a numeric synonym group ID to fetch a single group (getSynonymGroup).
GET
/
api
/
synonymsgroup
/
{identifier}
Get Synonyms by Language or Synonym Group
curl --request GET \
--url https://api.cludo.com/api/synonymsgroup/{identifier} \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://api.cludo.com/api/synonymsgroup/{identifier}"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.cludo.com/api/synonymsgroup/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://api.cludo.com/api/synonymsgroup/{identifier}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"groupId": 123,
"words": [
"<string>"
],
"language": "<string>"
}{
"message": "unauthorized"
}{
"message": "<string>"
}{
"status": "InternalServerError",
"code": 500,
"messages": [
"Error occur. Please contact support with error ID: a1b2c3d4-e5f6-7890-abcd-ef1234567890"
]
}Authorizations
Basic authentication. Use your Customer ID as the username and API Key as the password. Example header: Authorization: Basic MTIzNDU2NzpteS1hcGkta2V5.
Path Parameters
A two-letter ISO language code (e.g. en, da, de) to list all groups for that language, or a numeric group ID to fetch one group. Corresponds to getSynonymsByLanguage (language) and getSynonymGroup (group ID) in client integrations.
Response
Synonym group(s) matching the identifier.
Was this page helpful?

