> ## Documentation Index
> Fetch the complete documentation index at: https://www.edenai.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List Collections

> List the user's collections.

Served from the gateway's ownership store, never from a provider scan
(the provider listing is cross-tenant on shared accounts). Free, and —
like the other gateway resource reads — not registered in the request
history.



## OpenAPI

````yaml https://api.edenai.run/v3/docs/openapi.json get /v3/universal-ai/collections
openapi: 3.1.0
info:
  title: Eden AI API V3
  version: 3.0.0
servers:
  - url: https://api.edenai.run
    description: Production server
security: []
paths:
  /v3/universal-ai/collections:
    get:
      tags:
        - collections
      summary: List Collections
      description: |-
        List the user's collections.

        Served from the gateway's ownership store, never from a provider scan
        (the provider listing is cross-tenant on shared accounts). Free, and —
        like the other gateway resource reads — not registered in the request
        history.
      operationId: list_collections_v3_universal_ai_collections_get
      parameters:
        - name: model
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by 'feature/subfeature' or 'feature/subfeature/provider'
            title: Model
          description: Filter by 'feature/subfeature' or 'feature/subfeature/provider'
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: Page number (1-indexed)
            default: 1
            title: Page
          description: Page number (1-indexed)
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            description: Maximum number of items per page
            default: 100
            title: Limit
          description: Maximum number of items per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCollectionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - AuthBearer: []
components:
  schemas:
    ListCollectionsResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/CollectionResponse'
          type: array
          title: Items
          description: List of items
        total:
          type: integer
          title: Total
          description: Total number of items
        page:
          type: integer
          title: Page
          description: Current page number
        limit:
          type: integer
          title: Limit
          description: Items per page
        total_pages:
          type: integer
          title: Total Pages
          description: Total number of pages
      type: object
      required:
        - items
        - total
        - page
        - limit
        - total_pages
      title: ListCollectionsResponse
      description: Paginated list of the user's collections.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CollectionResponse:
      properties:
        collection_id:
          type: string
          format: uuid
          title: Collection Id
          description: >-
            Client-facing collection id; use it in item operations and in
            /v3/universal-ai calls that take a collection_id input.
        model:
          type: string
          title: Model
          description: '''feature/subfeature/provider'' string the collection is bound to.'
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: Collection name, if any.
      type: object
      required:
        - collection_id
        - model
      title: CollectionResponse
      description: A collection owned by the authenticated user.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    AuthBearer:
      type: http
      scheme: bearer

````