UptimeTea

API Documentation

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

Get Profile

Get the current authenticated user's profile information.

GET
https://api.uptimetea.com/auth/profile

Headers

Authorization
REQUIRED
STRING
Bearer $TOKEN

Response body

{
  "id": "uuid",
  "first_name": "John",
  "last_name": "Doe",
  "email": "user@example.com",
  "avatar_url": null,
  "locale": "en",
  "timezone": "UTC",
  "theme": "light"
}

Code Examples

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