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

# Get user's tag analysis

> Retrieve tag and category statistics for the authenticated user



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi get /api/v1/analysis/top-tags
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/analysis/top-tags:
    get:
      tags:
        - User Analysis
      summary: Get user's tag analysis
      description: Retrieve tag and category statistics for the authenticated user
      operationId: getApiV1AnalysisTop-tags
      responses:
        '200':
          description: User's tag analysis
          content:
            application/json:
              schema:
                type: object
                properties:
                  tags:
                    type: array
                    items:
                      type: object
                      properties:
                        tag:
                          type: string
                        count:
                          type: number
                      required:
                        - tag
                        - count
                required:
                  - tags

````