Get account view for a managed creator
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/account \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/account"
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}/account', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "3bbe6394-2830-4646-a8ba-4a0a05426947",
"email": "johnny@fanvue.com",
"handle": "johnny-doey",
"displayName": "Johnny Doey",
"isCreator": true,
"createdAt": "2023-01-15T10:30:00.000Z",
"updatedAt": "2024-12-01T14:20:00.000Z",
"avatarUrl": "https://media.fanvue.com/user-avatar.jpg",
"bannerUrl": "https://media.fanvue.com/user-banner.jpg",
"bio": "Content creator and influencer",
"likesCount": 1250,
"contentCounts": {
"imageCount": 145,
"videoCount": 67,
"audioCount": 12,
"postCount": 234,
"payToViewPostCount": 45
},
"account": {
"status": "active",
"subscriptionPrice": 999,
"earnings": {
"total": 1532400,
"availableBalance": 412800,
"lastPayoutAt": "2024-11-28T09:00:00.000Z"
},
"fans": {
"followers": 3420,
"subscribers": 890
}
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Creator Account
Get account view for a managed creator
Get the account view (profile, status, earnings totals, last payout, fan counts) for a creator the authenticated agency team member manages.
GET
/
v1
/
creators
/
{creatorUserUuid}
/
account
Get account view for a managed creator
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/account \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/account"
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}/account', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "3bbe6394-2830-4646-a8ba-4a0a05426947",
"email": "johnny@fanvue.com",
"handle": "johnny-doey",
"displayName": "Johnny Doey",
"isCreator": true,
"createdAt": "2023-01-15T10:30:00.000Z",
"updatedAt": "2024-12-01T14:20:00.000Z",
"avatarUrl": "https://media.fanvue.com/user-avatar.jpg",
"bannerUrl": "https://media.fanvue.com/user-banner.jpg",
"bio": "Content creator and influencer",
"likesCount": 1250,
"contentCounts": {
"imageCount": 145,
"videoCount": 67,
"audioCount": 12,
"postCount": 234,
"payToViewPostCount": 45
},
"account": {
"status": "active",
"subscriptionPrice": 999,
"earnings": {
"total": 1532400,
"availableBalance": 412800,
"lastPayoutAt": "2024-11-28T09:00:00.000Z"
},
"fans": {
"followers": 3420,
"subscribers": 890
}
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Required scope
read:creator— Access creator profiles, content, and creator-specific information.
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
Response
Account details for the managed creator
Show child attributes
Show child attributes
Total likes the creator's content has received. Absent for non-creator accounts.
Counts of the creator's posted content by media type. Absent for non-creator accounts.
Show child attributes
Show child attributes
Was this page helpful?