Clerk user.created webhook payload example (Svix)

Clerk (via Svix) · event: user.created · content type: application/json

This is a representative sample — fake IDs, real structure. To see a payload with your data, point the provider at a capture URL (button below).

See it live, not frozen

One click creates a free capture bin with this exact payload already in it — pretty-printed, headers inspectable, replayable to your own endpoint:

Then paste the bin's URL into Clerk (via Svix)'s webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json
svix-id: msg_2hXK9vQ4jF7pLmNd0RtYw3ZbTqe
svix-timestamp: 1787990000
svix-signature: v1,+9k4qGgUe0eNATFMePclozazKGqbWR4sJiqo48EydaE=

Body

{
  "data": {
    "id": "user_2hXKa8bQw3ZbTqeLmNd0RtYvJfE",
    "object": "user",
    "first_name": "Ada",
    "last_name": "Lovelace",
    "image_url": "https://img.clerk.com/preview.png",
    "email_addresses": [
      {
        "id": "idn_2hXKb1cRx4AcUrfMnOe1SuZwKgF",
        "object": "email_address",
        "email_address": "ada@example.com",
        "verification": {
          "status": "verified",
          "strategy": "email_code"
        }
      }
    ],
    "primary_email_address_id": "idn_2hXKb1cRx4AcUrfMnOe1SuZwKgF",
    "created_at": 1787989998543,
    "updated_at": 1787989998543
  },
  "object": "event",
  "timestamp": 1787989999,
  "type": "user.created"
}

Things that bite people

Send it yourself

Reproduce this delivery against any endpoint (your handler, a bin, staging):

$ curl -X POST https://your-endpoint.example/hook \
  -H 'content-type: application/json' \
  -H 'svix-id: msg_2hXK9vQ4jF7pLmNd0RtYw3ZbTqe' \
  -H 'svix-timestamp: 1787990000' \
  -H 'svix-signature: v1,+9k4qGgUe0eNATFMePclozazKGqbWR4sJiqo48EydaE=' \
 -d '{
  "data": {
    "id": "user_2hXKa8bQw3ZbTqeLmNd0RtYvJfE",
    "object": "user",
    "first_name": "Ada",
    "last_name": "Lovelace",
    "image_url": "https://img.clerk.com/preview.png",
    "email_addresses": [
      {
        "id": "idn_2hXKb1cRx4AcUrfMnOe1SuZwKgF",
        "object": "email_address",
        "email_address": "ada@example.com",
        "verification": {
          "status": "verified",
          "strategy": "email_code"
        }
      }
    ],
    "primary_email_address_id": "idn_2hXKb1cRx4AcUrfMnOe1SuZwKgF",
    "created_at": 1787989998543,
    "updated_at": 1787989998543
  },
  "object": "event",
  "timestamp": 1787989999,
  "type": "user.created"
}'

← All payload examples · Related guide · Signature debugger · Docs