Skip to main content
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>'
{
  "groupId": 123,
  "words": [
    "<string>"
  ],
  "language": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://signe.cludo.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication. Use your Customer ID as the username and API Key as the password. Example header: Authorization: Basic MTIzNDU2NzpteS1hcGkta2V5.

Path Parameters

identifier
string
required

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.

groupId
integer
required

Synonym group ID (assigned by server on create).

words
string[]
required

Equivalents treated as the same intent for search (e.g. motorcycle, bike).

language
string
required

A two-letter ISO language code (e.g. en, da, de) this group applies to.