> ## 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.

# List Articles

> List Articles.



## OpenAPI

````yaml GET /articles/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: []
paths:
  /articles/getAll:
    get:
      tags:
        - Articles
      summary: Get all articles (public)
      description: >-
        Returns a paginated list. Public view defaults to published & active &
        not private/deleted. Use filters to refine results.
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            example: 1
            minimum: 1
        - in: query
          name: limit
          schema:
            type: integer
            example: 20
            minimum: 1
            maximum: 100
        - in: query
          name: keyword
          schema:
            type: string
            example: nose
        - in: query
          name: includeDeleted
          schema:
            type: boolean
            example: false
        - in: query
          name: includeUnpublished
          schema:
            type: boolean
            example: false
        - in: query
          name: includePrivate
          schema:
            type: boolean
            example: false
        - in: query
          name: category
          schema:
            type: string
            example: '{{objectId}}'
        - in: query
          name: subCategory
          schema:
            type: string
            example: '{{objectId}}'
        - in: query
          name: author
          schema:
            type: string
            example: '{{objectId}}'
        - in: query
          name: tags
          description: CSV list of tags
          schema:
            type: string
            example: ai,news
        - in: query
          name: sortBy
          schema:
            type: string
            enum:
              - createdAt
              - publishDate
            example: publishDate
        - in: query
          name: sortOrder
          schema:
            type: string
            enum:
              - asc
              - desc
            example: desc
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: OK
                data:
                  items:
                    - id: '{{objectId}}'
                      slug: droopy-nose
                      mainTitle:
                        en: Droopy Nose
                        es: Nariz caída
                      publishDate: '2025-05-22T21:42:41.596Z'
                      isPublished: true
                  pagination:
                    total: 1
                    page: 1
                    limit: 20
                    totalPages: 1
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````