Skip to main content
GET
/
notifications
List notifications
curl --request GET \
  --url https://api.postiz.com/public/v1/notifications \
  --header 'Authorization: <api-key>'
{
  "notifications": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "content": "Your post to X was published successfully",
      "link": null,
      "createdAt": "2025-01-15T10:30:00.000Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "content": "Failed to publish post to LinkedIn",
      "link": null,
      "createdAt": "2025-01-15T09:15:00.000Z"
    }
  ],
  "total": 250,
  "page": 0,
  "limit": 100,
  "hasMore": true
}

Authorizations

Authorization
string
header
required

Your Postiz API key

Query Parameters

page
integer
default:0

Page number (0-indexed). Defaults to 0.

Required range: x >= 0

Response

200 - application/json

Paginated list of notifications

notifications
object[]
total
integer

Total number of notifications

page
integer

Current page number (0-indexed)

limit
integer

Number of notifications per page (always 100)

hasMore
boolean

Whether there are more pages available