> ## Documentation Index
> Fetch the complete documentation index at: https://api-tools.memories.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Collections

> List collections

<Info>
  **Product**: Video Datalake
  **Host**: `https://api.memories.ai/datalake/v1`
  **Auth**: `Authorization: sk-mai-...`
</Info>

List collections in your account, newest first. Page with `cursor` / `next_cursor`.

<Note>
  **Pricing:** Free — management / read (no charge). · See [Pricing](/datalake/pricing) for the full model.
</Note>

## Response Fields

<ResponseField name="collections" type="array">Array of collection objects (same shape as Get Collection).</ResponseField>
<ResponseField name="next_cursor" type="string">Cursor for the next page, or `null` at the end.</ResponseField>


## OpenAPI

````yaml GET /datalake/v1/collections
openapi: 3.1.0
info:
  title: Memories.ai DataLake API 2.0
  version: 2026-08
  description: OpenAPI mapping used by Mintlify Try it for the DataLake API 2.0 docs.
servers:
  - url: https://api.memories.ai
security:
  - ApiKeyAuth: []
paths:
  /datalake/v1/collections:
    get:
      tags:
        - Collections
      summary: List collections
      description: >-
        List collections in your account, newest first. Page with `cursor` /
        `next_cursor`.
      operationId: list_collections
      parameters:
        - name: cursor
          in: query
          required: false
          schema:
            type: string
          description: Opaque pagination cursor from a previous `next_cursor`.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
          description: Page size, 1–100 (default 20).
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                collections:
                  - id: col_xxx
                    name: my-set
                next_cursor: null
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Send `Authorization: sk-mai-...`'

````