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

> Get All Tags.



## OpenAPI

````yaml GET /tags/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:
  /tags/getAll:
    get:
      tags:
        - Tags
      summary: Get all tags for current tenant
      description: >-
        Returns a paginated list of all tags for the tenant identified by the
        `x-tenant-id` header. No user authentication is required.
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            example: 1
            minimum: 1
            default: 1
          description: Page number
        - in: query
          name: limit
          schema:
            type: integer
            example: 100
            minimum: 1
            default: 100
          description: Items per page
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Tags retrieved successfully
                data:
                  tags:
                    - _id: '{{objectId}}'
                      tenantId: tenant123
                      name: artificial-intelligence
                      createdAt: '2025-11-23T12:00:00Z'
                      updatedAt: '2025-11-23T12:00:00Z'
                  pagination:
                    total: 50
                    page: 1
                    limit: 100
                    totalPages: 1
        '400':
          description: Missing or invalid x-tenant-id header
        '500':
          description: Server error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````