Get Taxonomies by Language

Retrieve all taxonomies assigned to a specific language.

Endpoint

GET /v1/workspaces/{workspaceId}/taxonomy/languages/{languageId}

Request

curl -X GET \
  'https://api.sharely.ai/v1/workspaces/{workspaceId}/taxonomy/languages/en' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'organizationid: your-organization-id'

Path Parameters

ParameterTypeRequiredDescription
languageIdstringYesLanguage code (e.g., "en", "es", "pt")

Response

{
  "taxonomies": [
    {
      "id": "taxonomy-uuid-1",
      "name": "Medical Knowledge",
      "published": true
    }
  ]
}

Related Endpoints