GET Auth Log API
Overview
The Auth Log API returns authentication events such as login success, failed login, logout, and security context where supported.
Endpoint
GET https://your-rise-domain.com/api/rise-log/auth
Example request
curl -X GET "https://your-rise-domain.com/api/rise-log/auth?status=failed&date_from=2026-05-01" \
-H "Accept: application/json" \
-H "X-RLP-API-Key: YOUR_API_KEY"
Example response
{
"success": true,
"data": [
{
"id": 901,
"event": "failed_login",
"user_email": "[email protected]",
"user_id": null,
"ip_address": "198.51.100.24",
"country": "Germany",
"user_agent": "Mozilla/5.0",
"created_at": "2026-05-17 08:11:00"
}
]
}
Use cases
- External failed-login dashboard.
- Brute-force IP monitoring.
- User account compromise investigation.
- Security summaries.
Privacy note
Auth logs can contain IP addresses, emails, and device context. Limit access to trusted systems only.

