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

# Analyze tags

> Analyze tags



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi post /api/v1/admin/tags/analyze
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/admin/tags/analyze:
    post:
      tags:
        - Admin
      summary: Analyze tags
      description: Analyze tags
      operationId: postApiV1AdminTagsAnalyze
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                quizId:
                  type: string
                  format: uuid
                type:
                  type: string
                  enum:
                    - singleplayer
                    - multiplayer
                    - document
                    - random
              required:
                - quizId
                - type
      responses:
        '200':
          description: Tags analyzed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  quizId:
                    type: string
                    format: uuid
                  tags:
                    type: array
                    items:
                      type: string
                  categories:
                    type: array
                    items:
                      type: string
                required:
                  - success
                  - quizId
                  - tags
                  - categories

````