> ## 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 detailed performance metrics for a monitor



## OpenAPI

````yaml /openapi.json get /monitors/{id}/performance
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:
  /monitors/{id}/performance:
    get:
      tags:
        - Monitors
      summary: Get detailed performance metrics for a monitor
      operationId: MonitorController_getPerformance
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: period
          required: false
          in: query
          description: Time period for metrics (e.g., 24h, 7d, 30d)
          schema:
            type: string
      responses:
        '200':
          description: Return the performance metrics.
          content:
            application/json:
              schema:
                type: object
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````