UptimeTea

API Documentation

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

Login

Login with email and password to receive an authentication token.

POST
https://api.uptimetea.com/auth/login

Headers

Content-Type
REQUIRED
STRING
application/json

Response body

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

Code Examples

curl -X POST "https://api.uptimetea.com/auth/login" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "password": "securepassword"
  }'