K
OverviewAuthenticationReports APIGET List reportsGET Get report
GET/v2/reporting/monitor-reports/{monitor_uuid}

Get report for a monitor

Returns detailed SLA, MTTR, and outage data for a specific monitor.

Request

Path Parameters
uuidstringrequired
The unique identifier of the monitor
Example:"mon_wq1sFyHbxC7YRC"
Query Parameters
fromstringoptional
Start date for the report in ISO 8601 format
Example:"2025-01-01T00:00:00.000Z"
tostringoptional
End date for the report in ISO 8601 format
Example:"2025-01-31T23:59:59.999Z"
💡Default Period

If from and to are not provided, defaults to the last 7 days.

Response

Returns detailed report data including individual outage breakdowns.

Response Objectapplication/json
uuidstring
Unique identifier for the monitor
namestring
Name of the monitor
protocolstring
Protocol type of the monitor
periodobject
Time period with from and to dates
slanumber
Uptime percentage for the period
outagesobject
Outage statistics with count, totalDowntime, longestOutage, and detailed details array
mttrnumber
Mean Time To Recovery in seconds
mttrFormattedstring
Human-readable MTTR
RequestcURL
curl https://api.hyperping.io/v2/reporting/monitor-reports/mon_wq1sFyHbxC7YRC \
  -H "Authorization: Bearer ${API_TOKEN}"
200 OKJSON
{
  "uuid": "mon_e3nJvpusxl6l3C",
  "name": "Website",
  "protocol": "http",
  "period": {
    "from": "2025-04-30T20:16:38.705Z",
    "to": "2025-05-06T20:16:38.705Z"
  },
  "sla": 99.184,
  "outages": {
    "count": 2,
    "totalDowntime": 4231,
    "totalDowntimeFormatted": "1hr 10min 31s",
    "longestOutage": 4171,
    "longestOutageFormatted": "1hr 9min 31s",
    "details": [
      {
        "startDate": "2025-05-04T14:35:28.000Z",
        "endDate": "2025-05-04T15:44:59.000Z",
        "duration": 4171,
        "durationFormatted": "1hr 9min 31s"
      },
      {
        "startDate": "2025-05-04T15:47:58.000Z",
        "endDate": "2025-05-04T15:48:58.000Z",
        "duration": 60,
        "durationFormatted": "1min 0s"
      }
    ]
  },
  "mttr": 2116,
  "mttrFormatted": "35min 16s"
}