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

# Get system statistics



## OpenAPI

````yaml /openapi.json get /admin/system-stats
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /admin/system-stats:
    get:
      tags:
        - Admin
      summary: Get system statistics
      operationId: AdminController_getSystemStats
      parameters: []
      responses:
        '200':
          description: Returns system statistics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemStatsDto'
      security:
        - bearer: []
components:
  schemas:
    SystemStatsDto:
      type: object
      properties:
        userCount:
          type: number
          example: 100
        subscriptions:
          type: object
          example:
            free: 70
            pro: 25
        monitorCount:
          type: number
          example: 500
        activeMonitors:
          type: number
          example: 450
        monitorStatus:
          type: object
          example:
            up: 430
            down: 20
            maintenance: 50
        projectCount:
          type: number
          example: 50
        incidentCount:
          type: number
          example: 30
        activeIncidents:
          type: number
          example: 5
        statusPageCount:
          type: number
          example: 20
        checkCount:
          type: number
          example: 10000
        notificationProviders:
          type: object
          example:
            email: 80
            slack: 40
            discord: 20
            webhook: 30
            teams: 10
            total: 180
      required:
        - userCount
        - subscriptions
        - monitorCount
        - activeMonitors
        - monitorStatus
        - projectCount
        - incidentCount
        - activeIncidents
        - statusPageCount
        - checkCount
        - notificationProviders
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````