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

# Get Overview

> Get dashboard overview: metric cards, score distribution, status breakdown.



## OpenAPI

````yaml /openapi.json get /api/v1/learn/analytics/me/overview
openapi: 3.1.0
info:
  title: Seamind Backend
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/learn/analytics/me/overview:
    get:
      tags:
        - learn-analytics
      summary: Get Overview
      description: >-
        Get dashboard overview: metric cards, score distribution, status
        breakdown.
      operationId: get_overview_api_v1_learn_analytics_me_overview_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OverviewDTO'
      security:
        - HTTPBearer: []
components:
  schemas:
    OverviewDTO:
      properties:
        metrics:
          $ref: '#/components/schemas/DashboardMetricsDTO'
        scoreDistribution:
          items:
            $ref: '#/components/schemas/app__domain__analytics__ScoreBucketDTO'
          type: array
          title: Scoredistribution
        statusBreakdown:
          additionalProperties:
            type: integer
          type: object
          title: Statusbreakdown
      type: object
      required:
        - metrics
        - scoreDistribution
        - statusBreakdown
      title: OverviewDTO
      description: >-
        Dashboard overview response with metrics, score distribution, status
        breakdown.
    DashboardMetricsDTO:
      properties:
        totalCourses:
          type: integer
          title: Totalcourses
        completedCourses:
          type: integer
          title: Completedcourses
        inProgressCourses:
          type: integer
          title: Inprogresscourses
        notStartedCourses:
          type: integer
          title: Notstartedcourses
        failedCourses:
          type: integer
          title: Failedcourses
        averageScore:
          anyOf:
            - type: number
            - type: 'null'
          title: Averagescore
        highestScore:
          anyOf:
            - type: integer
            - type: 'null'
          title: Highestscore
        lowestScore:
          anyOf:
            - type: integer
            - type: 'null'
          title: Lowestscore
        totalTimeSeconds:
          type: integer
          title: Totaltimeseconds
        lastActivityAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Lastactivityat
      type: object
      required:
        - totalCourses
        - completedCourses
        - inProgressCourses
        - notStartedCourses
        - failedCourses
        - averageScore
        - highestScore
        - lowestScore
        - totalTimeSeconds
        - lastActivityAt
      title: DashboardMetricsDTO
      description: Aggregated metrics for learner dashboard.
    app__domain__analytics__ScoreBucketDTO:
      properties:
        range:
          type: string
          title: Range
        count:
          type: integer
          title: Count
      type: object
      required:
        - range
        - count
      title: ScoreBucketDTO
      description: Score distribution bucket for histogram chart.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````