DocsWebhooks

Webhooks

Get notified of events in real-time

Webhooks

Receive real-time notifications when events occur.

Available Events

  • `post.created` - New post created
  • `post.updated` - Post content changed
  • `post.published` - Post published
  • `subscriber.created` - New subscriber
  • Setting Up Webhooks

  • Go to Settings > Webhooks
  • Add your endpoint URL
  • Select events to subscribe to
  • Save
  • Webhook Payload

    {
      "event": "post.published",
      "timestamp": "2026-01-27T12:00:00Z",
      "data": {
        "postId": "post_123",
        "title": "My New Post"
      }
    }
    

    Verification

    Verify webhooks using the signature in the `X-Pushit-Signature` header.