Skip to content

GET/users/{id}/notifications

List user's notifications

Retrieve user's notifications. Same filtering, sorting, and pagination as `/notifications`.

Parameters 13

NameTypeDescription
_pagequery · integerPage number (1-based)
_limitquery · integerItems per page
_startquery · integerSlice start index (alternative to page-based)

ReturnsNotification

Bearer token required

Response examples

200Array of notifications

application/json example derived from schema

[
  {
    "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"
  }
]
404404 — resource not found

application/json

{
  "error": {
    "status": 404,
    "message": "users #999 not found"
  }
}

Released under the MIT License.