Get creator notifications feed
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications"
headers = {
"X-Fanvue-API-Version": "<x-fanvue-api-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Fanvue-API-Version': '<x-fanvue-api-version>',
Authorization: 'Bearer <token>'
}
};
fetch('https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "6c3d8b1c-9b1f-4b6e-8d77-4e8b22ff9a01",
"createdAt": "2026-05-22T08:30:00.000Z",
"eventType": 11,
"isRead": false,
"data": {
"price": 500
},
"originator": {
"uuid": "8a3a93e2-1c2a-4b6c-b4fd-1cdaaa6fbc11",
"handle": "sarahmiller",
"displayName": "Sarah Miller",
"avatarUrl": "https://media.fanvue.com/avatars/sarahmiller.jpg",
"isCreator": false
},
"receiverUuid": "2bde24e6-942b-49d4-b7b9-8d1e8eccbffb"
},
{
"uuid": "f1d2e3b4-aaaa-4f5b-9c1d-2c2dffe11a23",
"createdAt": "2026-05-21T18:12:43.000Z",
"eventType": 12,
"isRead": true,
"data": {},
"originator": {
"uuid": "21f5c1ab-7d22-4e7d-9c2b-e1c3a4f6bb22",
"handle": "mikejohnson",
"displayName": "Mike Johnson",
"avatarUrl": null,
"isCreator": false
},
"receiverUuid": "2bde24e6-942b-49d4-b7b9-8d1e8eccbffb"
}
],
"nextCursor": "eyJvZmZzZXQiOjIwfQ"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Creator Account
Get creator notifications feed
Returns a paginated list of notifications received by the specified creator. Optionally filter by event type.
GET
/
v1
/
creators
/
{creatorUserUuid}
/
notifications
Get creator notifications feed
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications"
headers = {
"X-Fanvue-API-Version": "<x-fanvue-api-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {
'X-Fanvue-API-Version': '<x-fanvue-api-version>',
Authorization: 'Bearer <token>'
}
};
fetch('https://api.fanvue.com/v1/creators/{creatorUserUuid}/notifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "6c3d8b1c-9b1f-4b6e-8d77-4e8b22ff9a01",
"createdAt": "2026-05-22T08:30:00.000Z",
"eventType": 11,
"isRead": false,
"data": {
"price": 500
},
"originator": {
"uuid": "8a3a93e2-1c2a-4b6c-b4fd-1cdaaa6fbc11",
"handle": "sarahmiller",
"displayName": "Sarah Miller",
"avatarUrl": "https://media.fanvue.com/avatars/sarahmiller.jpg",
"isCreator": false
},
"receiverUuid": "2bde24e6-942b-49d4-b7b9-8d1e8eccbffb"
},
{
"uuid": "f1d2e3b4-aaaa-4f5b-9c1d-2c2dffe11a23",
"createdAt": "2026-05-21T18:12:43.000Z",
"eventType": 12,
"isRead": true,
"data": {},
"originator": {
"uuid": "21f5c1ab-7d22-4e7d-9c2b-e1c3a4f6bb22",
"handle": "mikejohnson",
"displayName": "Mike Johnson",
"avatarUrl": null,
"isCreator": false
},
"receiverUuid": "2bde24e6-942b-49d4-b7b9-8d1e8eccbffb"
}
],
"nextCursor": "eyJvZmZzZXQiOjIwfQ"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Required scopes
read:creator— Access creator profiles, content, and creator-specific information.read:self— Access your own user profile information, including basic account details and settings.
Authorizations
OAuth 2.0 access token, presented as a JWT bearer token in the Authorization header. Obtain a token via the authorization-code flow; the scopes granted to the token determine which operations it may call.
Headers
API version to use for the request
Example:
"2025-06-26"
Path Parameters
Query Parameters
Number of results to return (default 20)
Required range:
x <= 100Cursor for pagination
Filter notifications by event type id
Was this page helpful?