Postiz Notifications API

Account notifications.

Operations 2

GET /notifications List notifications #
GET /notifications/list #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/postiz-notifications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

postiz-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Postiz Notifications API
  version: '1.0'
  description: 'Operations tagged Notifications across 3 of this provider''s published API definitions: postiz-notifications-api-openapi.yml, postiz-platform-swagger-openapi.json, postiz-public-api-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.postiz.com/public/v1
  description: Postiz Cloud
- url: https://{your-domain}/api/public/v1
  description: Self-hosted
  variables:
    your-domain:
      default: localhost:5000
      description: Your Postiz instance domain
tags:
- name: Notifications
  description: Account notifications.
paths:
  /notifications:
    get:
      tags:
      - Notifications
      summary: List notifications
      description: Returns account notifications, paginated.
      operationId: listNotifications
      parameters:
      - name: page
        in: query
        required: false
        description: Zero-based page number.
        schema:
          type: integer
          default: 0
      responses:
        '200':
          description: List of notifications
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationsResponse'
      security:
      - ApiKeyAuth: []
    servers:
    - url: https://api.postiz.com/public/v1
      description: Postiz Cloud
    - url: https://{your-domain}/api/public/v1
      description: Self-hosted
      variables:
        your-domain:
          default: localhost:5000
          description: Your Postiz instance domain
  /notifications/list:
    get:
      operationId: NotificationsController_notifications
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Notifications
components:
  schemas:
    Notification:
      type: object
      properties:
        id:
          type: string
        content:
          type: string
        link:
          type: string
        createdAt:
          type: string
          format: date-time
    NotificationsResponse:
      type: object
      properties:
        notifications:
          type: array
          items:
            $ref: '#/components/schemas/Notification'
    Notification_2:
      type: object
      properties:
        id:
          type: string
          description: Unique notification ID
        content:
          type: string
          description: Notification message
        link:
          type: string
          nullable: true
          description: Optional link associated with the notification
        createdAt:
          type: string
          format: date-time
          description: When the notification was created
    NotificationsResponse_2:
      type: object
      properties:
        notifications:
          type: array
          items:
            $ref: '#/components/schemas/Notification_2'
        total:
          type: integer
          description: Total number of notifications
        page:
          type: integer
          description: Current page number (0-indexed)
        limit:
          type: integer
          description: Number of notifications per page (always 100)
        hasMore:
          type: boolean
          description: Whether there are more pages available
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Your Postiz API key, sent as the raw value of the Authorization header.
x-refined-from:
- postiz-notifications-api-openapi.yml
- postiz-platform-swagger-openapi.json
- postiz-public-api-openapi.json