UptimeTea

API Documentation

The UptimeTea API is easy to use and free for all plans.

List incidents

Returns all incidents for your watchers, ordered by creation date (newest first).

GET
https://api.uptimetea.com/incidents

Headers

Authorization
REQUIRED
STRING
Bearer $TOKEN

Response body

[
  {
    "id": "uuid",
    "watcher_id": "uuid",
    "watcher": {
      "id": "uuid",
      "title": "My Website",
      "url": "https://example.com",
      "category": "uptime"
    },
    "status": "open",
    "description": "Website monitor 'My Website' is down",
    "started_at": "2024-01-15T10:00:00Z",
    "acknowledged_at": null,
    "resolved_at": null,
    "duration": null,
    "created_at": "2024-01-15T10:00:00Z"
  }
]

Code Examples

curl -X GET "https://api.uptimetea.com/incidents" \
  -H "Authorization: Bearer $TOKEN"