---
title: "List collections"
method: GET
path: "/ai/collections"
tags: ["AI Collections"]
---

# List collections

`GET /ai/collections`

Returns a paginated list of collections in your organization.

## Query parameters

- `page[number]` integer
- `page[size]` integer

## Response `200`

A paginated list of collections.

- CollectionListEnvelope
  - `data` Collection[]
    - `uuid` string, uuid
    - `slug` string
    - `record_type` string — Identifies the record type. Always `ai_collection`.
    - `name` string
    - `description` string
    - `status` string
    - `sources` CollectionsSource[]
      - `id` string
      - `record_type` string — Identifies the record type. Always `ai_collection_source`.
      - `collection_id` string, uuid
      - `source_type` 'voice' | 'meeting_bot' | 'message' | 'bucket' — The type of Telnyx data attached as a source. `bucket` requires an additional `bucket_id`. Only `voice` is searchable today; `meeting_bot`, `message`, and `bucket` attach but are not yet searchable (Coming soon).
      - `bucket_id` string — The Telnyx Storage bucket name. Present only for `bucket` sources.
      - `status` string
    - `settings` RetrievalSettingsWrapper
      - `record_type` string — Identifies the record type. Always `ai_collection_settings`.
      - `retrieval` RetrievalSettings — How documents are retrieved when searching the collection.
        - `top_k` integer — Number of top results to retrieve (1–50).
        - `retrieval_type` 'vector' | 'hybrid' — Retrieval strategy. `vector` runs semantic similarity search; `hybrid` combines vector similarity with keyword matching; `keyword` runs lexical (BM25) matching. `keyword` is not accepted yet: setting it returns 422 `unsupported_retrieval_type`. A collection set to `hybrid` is accepted here but cannot be searched until hybrid execution ships.
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `meta` ListMeta
    - `total_pages` integer
    - `total_results` integer
    - `page_number` integer
    - `page_size` integer

## Other responses

- `401` — Missing or invalid authentication.

## Changes

> 99 revisions in range; 1 not diffed.

- **2026-09-16** `a6a61a29ecdd` — 1 breaking, 1 warning, 4 info
  - the `errors/items/code` response's property type changed from `string` to `integer`, and format from no format to `int32` for status `401`
  - removed the optional property `errors/items/meta/pointer` from the response with the `401` status
  - added the optional property `errors/items/source` to the response with the `401` status
  - the response property `errors/items/code` became required for the status `401`
  - …2 more
- **2026-08-17** `1571b0380bd7` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/changes/ai/collections/get.md)

---

[API](https://skmtc.dev/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/team-telnyx/apis/telnyx-api-2/revisions/227c33b1ac9c?raw)
