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

# Get all authors (public)



## OpenAPI

````yaml /api-reference/ai-cms/openapi.json get /authors/getAll
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /authors/getAll:
    get:
      tags:
        - Authors
      summary: Get all authors (public)
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            example: 1
            minimum: 1
            default: 1
        - in: query
          name: limit
          schema:
            type: integer
            example: 10
            minimum: 1
            default: 10
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                OK:
                  value:
                    success: true
                    statusCode: 200
                    message: Authors list retrieved successfully
                    data:
                      authors:
                        - _id: '{{objectId}}'
                          name:
                            en: John Carter
                            es: Juan Carter
                          slug: john-carter
                          isActive: true
                      pagination:
                        total: 1
                        page: 1
                        limit: 10
                        totalPages: 1
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````