---
title: "Retrieve user-created glossaries"
method: GET
path: "/saas/glossaries"
tags: ["Glossary"]
---

# Retrieve user-created glossaries

`GET /saas/glossaries`

### Retrieve a list of user-created glossaries, optionally paginated and sorted by creation date.

**Details:**
- Supports pagination with a `token` for subsequent requests.
- If `token` is provided, `sort` and `page_size` are not allowed.
- If `sort` and/or `page_size` are specified, a fresh pagination page will be started without using `token`.

## Query parameters

- `sort` 'asc' | 'desc'
- `page_size` integer — Number of items per page `[1;100]`
- `token` string — Pagination token. Note: `sort` and `page_size` parameters are not allowed with the pagination `token` parameter.

## Response `200`

Successful Response

- GenericResponsePayloadPageUserGlossaryPageItem
  - `ok` boolean — Indicates if the request was successful or not.
  - `data` PageUserGlossaryPageItemOutput, required
    - `items` UserGlossaryPageItem[], required — The list of items in the page
      - `glossary_id` string, uuid4, required — Glossary ID
      - `user_id` string, required — User ID
      - `name` string, required — Glossary name
      - `is_enabled` boolean, required — Glossary status
      - `glossary_type` 'asr_hot' | 'asr' | 'translation', required
      - `source_lang` 'ar' | 'hy' | 'auto' | 'be' | 'bg' | 'bn' | 'ca' | 'cs' | 'cy' | 'da' | 'de' | 'el' | 'en' | 'es' | 'et' | 'eu' | 'fil' | 'kk' | 'mk' | 'sr' | 'fa' | 'fi' | 'fr' | 'ga' | 'gl' | 'he' | 'hi' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'ko' | 'lt' | 'lv' | 'mn' | 'mr' | 'ms' | 'mt' | 'no' | 'nl' | 'pl' | 'pt' | 'ro' | 'ru' | 'sk' | 'sl' | 'sv' | 'sw' | 'ta' | 'th' | 'tr' | 'ug' | 'uk' | 'ur' | 'vi' | 'yue' | 'zh', required
      - `target_lang` string, required — Target language of glossary
      - `utc_created_at` string, date-time, required — Glossary created time in UTC
      - `utc_updated_at` string, date-time, required — Glossary created time in UTC
    - `page_size` integer, required — The number of max items count in the page
    - `count` integer, required — The number of items in the page
    - `next` string — The next page token

## Other responses

- `default` — Default Response

---

[API](https://skmtc.dev/palabra/apis/palabra-api.md) · [All operations](https://skmtc.dev/palabra/apis/palabra-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/palabra/palabra-api/revisions/cb8721654525/schema)
