> ## Documentation Index
> Fetch the complete documentation index at: https://api.fanvue.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# New Follower Webhook

> Webhook event fired when a creator gains a new follower.

<Warning>
  `follow.new` is deprecated. Use
  [`creator.follow.created`](/docs/creator/engagement) instead. This event continues
  to fire during the migration window; new integrations should use the
  `creator.*` event.
</Warning>

## When this fires

Triggered when a user follows a creator.

## Payload

* `recipientUuid`: UUID of the creator who was followed
* `sender`: The user who followed (uuid, handle, displayName, avatarUrl)
* `timestamp`: ISO 8601 time the event occurred

## Example payload

```json theme={null}
{
  "recipientUuid": "f4b2a184-2b4a-4a04-9b70-3c0e0a1caa12",
  "sender": {
    "avatarUrl": "https://via.placeholder.com/150",
    "displayName": "Test User",
    "handle": "test-user",
    "uuid": "5939ae62-3eb5-4433-954f-f78c7b4282f3"
  },
  "timestamp": "2025-11-06T10:32:49.880Z"
}
```
