Skip to main content
GET
/
api
/
alerts
/
my
curl https://rolearn.dev/api/alerts/my \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "alerts": [
    {
      "id": 42,
      "message": "Blox Fruits CCU exceeded 500,000",
      "type": "ccu_spike",
      "viewed": false,
      "created_at": "2026-03-13T03:15:00Z"
    }
  ]
}
Returns all alerts belonging to the current user, including viewed and unviewed.
curl https://rolearn.dev/api/alerts/my \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "alerts": [
    {
      "id": 42,
      "message": "Blox Fruits CCU exceeded 500,000",
      "type": "ccu_spike",
      "viewed": false,
      "created_at": "2026-03-13T03:15:00Z"
    }
  ]
}