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

# List Collection Moment Findings



## OpenAPI

````yaml GET /collections/{collection_id}/moments/findings
openapi: 3.0.0
info:
  title: Cloudglue API
  description: API for Cloudglue
  license:
    name: Apache License 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
  version: 0.7.23
servers:
  - url: https://api.cloudglue.dev/v1
security:
  - bearerAuth: []
paths:
  /collections/{collection_id}/moments/findings:
    get:
      tags:
        - Collections
      summary: List findings in a moments collection
      operationId: listCollectionMomentFindings
      parameters:
        - name: collection_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: criterion_name
          in: query
          schema:
            type: string
        - name: file_id
          in: query
          schema:
            type: string
            format: uuid
        - name: kind
          in: query
          schema:
            type: string
            enum:
              - absence
              - observation
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Findings across current collection members.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionMomentFindingsList'
        '400':
          description: Not a moments collection
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Collection not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CollectionMomentFindingsList:
      type: object
      properties:
        findings:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/MomentFinding'
              - type: object
                properties:
                  file_id:
                    type: string
                    format: uuid
                  job_id:
                    type: string
                    format: uuid
                  criterion_name:
                    type: string
        total:
          type: integer
        next_cursor:
          type: string
      required:
        - findings
        - total
    Error:
      required:
        - error
      type: object
      properties:
        error:
          type: string
    MomentFinding:
      type: object
      description: >-
        A non-temporal finding, produced whenever the criterion declares a
        finding_schema.
      properties:
        finding_id:
          type: string
          format: uuid
        kind:
          type: string
          enum:
            - absence
            - observation
        properties:
          type: object
          description: Validates against the criterion's finding_schema.
      required:
        - finding_id
        - kind
        - properties
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````