Get fan insights for a creator
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/insights/fans/{userUuid} \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/insights/fans/{userUuid}"
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}/insights/fans/{userUuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "subscriber",
"spending": {
"lastPurchaseAt": "2024-01-14T00:00:00.000Z",
"lastValidPurchaseAt": "2024-01-14T00:00:00.000Z",
"total": {
"gross": 25700,
"total": 25700,
"netTotal": 25700
},
"maxSinglePayment": {
"gross": 5000,
"total": 5000
},
"sources": {
"message": {
"gross": 15000,
"total": 15000,
"netTotal": 13000,
"count": 6,
"netCount": 5,
"average": 2500,
"netAverage": 2600
},
"post": {
"gross": 8500,
"total": 8500,
"netTotal": 8500,
"count": 5,
"netCount": 5,
"average": 1700,
"netAverage": 1700
},
"referral": {
"gross": 4200,
"total": 4200,
"netTotal": 4200,
"count": 2,
"netCount": 2,
"average": 2100,
"netAverage": 2100
}
}
},
"subscription": {
"createdAt": "2024-01-01T12:00:00.000Z",
"renewsAt": "2024-02-01T00:00:00.000Z",
"autoRenewalEnabled": true
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Creator Insights
Get fan insights for a creator
Returns detailed insights about a specific fan for the specified creator, including spending statistics, subscription status, and fan engagement metrics.
GET
/
v1
/
creators
/
{creatorUserUuid}
/
insights
/
fans
/
{userUuid}
Get fan insights for a creator
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/insights/fans/{userUuid} \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/insights/fans/{userUuid}"
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}/insights/fans/{userUuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "subscriber",
"spending": {
"lastPurchaseAt": "2024-01-14T00:00:00.000Z",
"lastValidPurchaseAt": "2024-01-14T00:00:00.000Z",
"total": {
"gross": 25700,
"total": 25700,
"netTotal": 25700
},
"maxSinglePayment": {
"gross": 5000,
"total": 5000
},
"sources": {
"message": {
"gross": 15000,
"total": 15000,
"netTotal": 13000,
"count": 6,
"netCount": 5,
"average": 2500,
"netAverage": 2600
},
"post": {
"gross": 8500,
"total": 8500,
"netTotal": 8500,
"count": 5,
"netCount": 5,
"average": 1700,
"netAverage": 1700
},
"referral": {
"gross": 4200,
"total": 4200,
"netTotal": 4200,
"count": 2,
"netCount": 2,
"average": 2100,
"netAverage": 2100
}
}
},
"subscription": {
"createdAt": "2024-01-01T12:00:00.000Z",
"renewsAt": "2024-02-01T00:00:00.000Z",
"autoRenewalEnabled": true
}
}{
"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:insights— Access analytics, metrics, and insights data for performance tracking.read:fan— Access fan-related data and information within the platform.
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"
Was this page helpful?