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

# Search Tags

> Search Tags.



## OpenAPI

````yaml GET /tags/search
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/search:
    get:
      tags:
        - Tags
      summary: Search tags
      description: >-
        Case-insensitive partial name match against the tags of the tenant
        identified by the `x-tenant-id` header. No user authentication is
        required.
      parameters:
        - in: query
          name: q
          required: true
          schema:
            type: string
            example: ai
          description: Search term (used as a regular expression)
        - in: query
          name: limit
          schema:
            type: integer
            example: 20
            minimum: 1
            default: 20
          description: Maximum number of results
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Tags found
                data:
                  tags:
                    - _id: '{{objectId}}'
                      tenantId: tenant123
                      name: artificial-intelligence
        '400':
          description: Missing or invalid x-tenant-id header
        '500':
          description: Server error
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````