> ## 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 breadcrumb path



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/collections/{id}/breadcrumb-path/
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/{id}/breadcrumb-path/:
    get:
      tags:
        - api
      operationId: collection_breadcrumb_path
      parameters:
        - in: query
          name: ancestor_ids
          schema:
            type: array
            items:
              type: string
              format: uuid
          description: Ordered ancestor collection ids preceding the target collection.
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
        - in: query
          name: project_id
          schema:
            type: string
            format: uuid
          description: Project context for /p routes.
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CollectionBreadcrumbPathSegment'
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components:
  schemas:
    CollectionBreadcrumbPathSegment:
      type: object
      properties:
        kind:
          $ref: '#/components/schemas/CollectionBreadcrumbPathSegmentKindEnum'
        id:
          type: string
          format: uuid
        label:
          type: string
        accessible:
          type: boolean
        project_id:
          type: string
          format: uuid
          nullable: true
        collection_ids:
          type: array
          items:
            type: string
            format: uuid
      required:
        - accessible
        - collection_ids
        - id
        - kind
        - label
        - project_id
    CollectionBreadcrumbPathSegmentKindEnum:
      enum:
        - project
        - collection
      type: string
      description: |-
        * `project` - project
        * `collection` - collection

````