For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Join Community
WelcomeDocsAPI ReferenceWebhooksChangelog
WelcomeDocsAPI ReferenceWebhooksChangelog
  • Webhooks
    • Webhooks Overview
    • Message Received
    • Message Read
    • New Follower
    • New Subscriber
    • Purchase Received
    • Tip Received
LogoLogo
Join Community
On this page
  • When this fires
  • Payload
  • Example payload
Webhooks

New Subscriber Webhook

Was this page helpful?
Previous

Purchase Received

Next
Built with

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}