> ## 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 top categories

> Retrieve the most frequent categories for the authenticated user



## OpenAPI

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

````