---
title: "Get Uptime Stats"
description: "Returns uptime percentages and average response times for the last day, month and year."
---

`GET /api/websites/:websitePublicId/uptime-stats`

## Path Parameters

- `websitePublicId` (recommended): website public UUID
- Backward compatibility: legacy numeric website IDs are still accepted

## Example (cURL)

```bash
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"

curl -X GET "$BASE_URL/api/websites/9a3d4d4d-7a4b-4f37-a9df-2a6f6d9d7a10/uptime-stats" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"
```

## Example Response

```json
{
  "day": "100.00",
  "month": "99.95",
  "year": "99.90",
  "dayAvgResponse": 125,
  "monthAvgResponse": 118,
  "yearAvgResponse": 120
}
```

## Common Errors

- `400 Invalid Website identifier` if `:websitePublicId` is neither a valid UUID nor a legacy numeric ID
- `401 Unauthorized` if you are not authenticated
- `403 Forbidden` if you do not have access to the website

