New Subscriber Webhook

When this fires

Triggered when a user subscribes to a creator.

Amounts are in minor units (for USD, cents).

Payload

  • price: Subscription amount in minor units
  • recipientUuid: UUID of the creator who was subscribed to
  • sender: The user who subscribed (uuid, handle, displayName, avatarUrl)
  • timestamp: ISO 8601 time the event occurred

Example payload

1{
2 "price": 1299,
3 "recipientUuid": "f4b2a184-2b4a-4a04-9b70-3c0e0a1caa12",
4 "sender": {
5 "avatarUrl": "https://via.placeholder.com/150",
6 "displayName": "Test User",
7 "handle": "test-user",
8 "uuid": "5939ae62-3eb5-4433-954f-f78c7b4282f3"
9 },
10 "timestamp": "2025-11-06T10:32:50.529Z"
11}