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

# Get apicollections



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/collections/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/collections/:
    get:
      tags:
        - api
      operationId: collections_list
      parameters:
        - in: query
          name: access_scope
          schema:
            type: string
          description: >-
            Use 'home' to include direct, organization, and public-access
            collections.
        - in: query
          name: owner_id
          schema:
            type: string
        - in: query
          name: owner_type
          schema:
            type: string
        - in: query
          name: parent_id
          schema:
            type: string
        - in: query
          name: q
          schema:
            type: string
          description: Case-insensitive substring filter on collection title or alias.
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Collection'
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components:
  schemas:
    Collection:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        title:
          type: string
          maxLength: 255
        description:
          type: string
        alias:
          type: string
          maxLength: 255
        tags:
          type: array
          items:
            type: string
            maxLength: 100
        type:
          type: array
          items:
            type: string
            maxLength: 100
        parent_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        parent_ids:
          type: array
          items:
            type: string
            format: uuid
          readOnly: true
        owner_user_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        owner_project_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        is_root:
          type: boolean
          readOnly: true
        preferred_repository_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        owner_user_name:
          type: string
          nullable: true
          readOnly: true
        owner_project_name:
          type: string
          nullable: true
          readOnly: true
        effective_flags:
          type: integer
          readOnly: true
        is_starred:
          type: boolean
          readOnly: true
        provenance_token:
          type: string
          nullable: true
          readOnly: true
        access_scope:
          type: string
          readOnly: true
      required:
        - access_scope
        - created_at
        - effective_flags
        - id
        - is_root
        - is_starred
        - owner_project_id
        - owner_project_name
        - owner_user_id
        - owner_user_name
        - parent_id
        - parent_ids
        - preferred_repository_id
        - title
        - updated_at

````