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

# list knowledge group documents

> Get all documents in a RAG group



## OpenAPI

````yaml https://api.anam.ai/swagger.json get /v1/knowledge/groups/{id}/documents
openapi: 3.1.0
info:
  title: Anam AI API
  version: '1.0'
servers:
  - url: https://api.anam.ai
    description: Anam API
security:
  - BearerAuth: []
tags:
  - name: Sessions
  - name: Personas
  - name: Avatars
  - name: Voices
  - name: LLMs
  - name: Knowledge
  - name: Tools
  - name: Share Links
paths:
  /v1/knowledge/groups/{id}/documents:
    get:
      tags:
        - Knowledge
      summary: list knowledge group documents
      description: Get all documents in a RAG group
      operationId: listKnowledgeGroupDocuments
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
          description: Unique identifier of the knowledge group
      responses:
        '200':
          description: Successfully retrieved documents
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KnowledgeDocument'
              examples:
                default:
                  $ref: '#/components/examples/KnowledgeDocumentArrayResponse'
        '401':
          description: Unauthorized - Invalid or missing API key
        '404':
          description: RAG group not found
        '500':
          description: Server error
components:
  schemas:
    KnowledgeDocument:
      type: object
      description: >-
        A single file uploaded into a knowledge group. Retrieved chunks
        reference it by ID.
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the document.
        knowledgeFolderId:
          type: string
          format: uuid
          description: ID of the knowledge group this document belongs to.
        filename:
          type: string
          description: Original filename as uploaded.
        fileType:
          type: string
          description: MIME type or extension-derived file type.
        fileSize:
          type: integer
          description: Size of the file in bytes.
        fileUrl:
          type: string
          format: uri
          description: Internal URL at which the file is stored.
        status:
          type: string
          enum:
            - UPLOADED
            - PROCESSING
            - READY
            - FAILED
          description: Current processing state. Only `READY` documents are searchable.
        errorMessage:
          type:
            - string
            - 'null'
          description: Failure reason when `status` is `FAILED`, otherwise `null`.
        createdAt:
          type: string
          format: date-time
          description: Timestamp when the document was uploaded.
        updatedAt:
          type:
            - string
            - 'null'
          format: date-time
          description: Timestamp when the document record was last updated.
  examples:
    KnowledgeDocumentArrayResponse:
      summary: All documents in a knowledge group (bare array)
      value:
        - id: 00000000-0000-0000-0000-000000000000
          knowledgeFolderId: 00000000-0000-0000-0000-000000000000
          filename: getting-started.pdf
          fileType: application/pdf
          fileSize: 248320
          fileUrl: https://cdn.anam.ai/knowledge/getting-started.pdf
          status: READY
          errorMessage: null
          createdAt: '2026-04-20T10:00:00.000Z'
          updatedAt: '2026-04-20T10:01:12.000Z'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````