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

# Get Documentation Agent

> Fetches documentation agents for the authenticated user.



## OpenAPI

````yaml get /v3/semantic_model/documentation_agents
openapi: 3.0.3
info:
  title: Get Documentation Agents
  version: 1.0.0
servers:
  - url: https://agent-prod.studio.lyzr.ai
security:
  - ApiKeyAuth: []
paths:
  /v3/semantic_model/documentation_agents:
    get:
      summary: Get Documentation Agents
      description: Fetches documentation agents for the authenticated user.
      responses:
        '200':
          description: A list of documentation agent IDs
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  message:
                    type: string
                    example: Successfully fetched agents
                  documentation_agents:
                    type: array
                    items:
                      type: string
        '401':
          description: Unauthorized
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````