> ## 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 current usage limits



## OpenAPI

````yaml /openapi.json get /usage/limits
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:
  /usage/limits:
    get:
      tags:
        - Usage
      summary: Get current usage limits
      operationId: UsageController_getLimits
      parameters: []
      responses:
        '200':
          description: Returns current usage limits based on subscription
          content:
            application/json:
              schema:
                properties:
                  monitorLimit:
                    type: number
                    example: 5
                  statusPageLimit:
                    type: number
                    example: 1
                  teamMemberLimit:
                    type: number
                    example: 1
                  storageLimit:
                    type: number
                    example: 5120
                  apiCallLimit:
                    type: number
                    example: 10000
        '404':
          description: User not found
        '500':
          description: Internal server error
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````