GET/notifications
List all notifications
Paginated list of notifications. Supports filtering, range operators (`_gte`, `_lte`, `_gt`, `_lt`, `_ne`, `_like`), full-text search, sorting, field selection, and relation expansion.
Parameters 12
| Name | Type | Description |
|---|---|---|
_page | query · integer | Page number (1-based) |
_limit | query · integer | Items per page |
_start | query · integer | Slice start index (alternative to page-based) |
ReturnsNotification
Bearer token required
Response examples
200Paginated array of notifications
[
{
"id": 1,
"userId": 1,
"type": "error",
"title": "Error notification",
"message": "New follower on your profile.",
"read": true,
"link": null,
"createdAt": "2026-03-23T15:22:15.402Z"
}
]429429 — rate limit exceeded (120/60s)
{
"error": {
"status": 429,
"message": "Too many requests",
"details": {
"retryAfter": 45
}
}
}