All Providers
πŸ““

Notion Webhooks

Productivity

Notion sends webhook events for database page additions and page property updates. Useful for syncing Notion databases with external tools like CRMs or project trackers.

Webhook Events

3 event types

page.created

New page created in a database

page.updated

Page properties updated

database.updated

Database structure updated

Signature Verification

Header
x-notion-signature
Method

HMAC-SHA256 of payload using webhook signing secret

View official docs

Sample Payload

page.created

application/json
{
  "type": "page.created",
  "timestamp": "2026-04-11T10:00:00.000Z",
  "workspace_id": "workspace_abc123",
  "data": {
    "object": "page",
    "id": "page_abc123def456",
    "parent": {
      "type": "database_id",
      "database_id": "db_abc123"
    },
    "properties": {
      "Name": {
        "title": [
          {
            "plain_text": "New Task"
          }
        ]
      },
      "Status": {
        "select": {
          "name": "Todo"
        }
      }
    }
  }
}

Send a Sample Notion Payload

Pick an event, enter your endpoint URL (or localhost), and fire a realistic Notion payload with one click β€” no Notion account needed.

Test Sender

Loading samples…

No signup

Capture & Inspect Notion Webhooks Live

Get a free public HTTPS endpoint below, point Notion at it, and watch events arrive in real time. Use the forwarding rule to relay them straight to your local server.

Live demo β€” no signup required

See it work in real time

Click below to get a live webhook URL instantly. Paste it anywhere β€” Stripe, GitHub, Postman β€” and watch events arrive right here.

Expires in 1 hour Β· No account needed

Forward Notion webhooks to localhost

  1. Click Create live endpoint above to get a public HTTPS URL
  2. Paste the URL into Notion's webhook settings
  3. In the Forwarding tab, add a rule: target = http://localhost:3000/webhooks/notion
  4. Fire a test event from Notion β€” it arrives in the inspector and hits your local handler simultaneously

Ready to test your Notion webhook handler?

Free HTTPS endpoint with forwarding, retry, and event replay. No install, no CLI, no deploy.

Create Free Account