List creator's free trial links
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/free-trial-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/free-trial-links"
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}/free-trial-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "f6a7b8c9-0d1e-4f2a-b3c4-d5e6f7a8b9c0",
"url": "https://www.fanvue.com/creatorhandle?free_trial=f6a7b8c9-0d1e-4f2a-b3c4-d5e6f7a8b9c0",
"maxUsages": 50,
"name": "Summer promo",
"usedCount": 4,
"trialDurationDays": 7,
"expiresAt": "2024-02-15T00:00:00.000Z",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "a7b8c9d0-1e2f-4a3b-c4d5-e6f7a8b9c0d1",
"url": "https://www.fanvue.com/creatorhandle?free_trial=a7b8c9d0-1e2f-4a3b-c4d5-e6f7a8b9c0d1",
"maxUsages": null,
"name": null,
"usedCount": 0,
"trialDurationDays": null,
"expiresAt": null,
"createdAt": "2024-01-14T00:00:00.000Z"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Creator Free Trial Links
List creator's free trial links
List the specified creator’s active free trial links, including the shareable URL for each.
GET
/
v1
/
creators
/
{creatorUserUuid}
/
free-trial-links
List creator's free trial links
curl --request GET \
--url https://api.fanvue.com/v1/creators/{creatorUserUuid}/free-trial-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/creators/{creatorUserUuid}/free-trial-links"
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}/free-trial-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "f6a7b8c9-0d1e-4f2a-b3c4-d5e6f7a8b9c0",
"url": "https://www.fanvue.com/creatorhandle?free_trial=f6a7b8c9-0d1e-4f2a-b3c4-d5e6f7a8b9c0",
"maxUsages": 50,
"name": "Summer promo",
"usedCount": 4,
"trialDurationDays": 7,
"expiresAt": "2024-02-15T00:00:00.000Z",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "a7b8c9d0-1e2f-4a3b-c4d5-e6f7a8b9c0d1",
"url": "https://www.fanvue.com/creatorhandle?free_trial=a7b8c9d0-1e2f-4a3b-c4d5-e6f7a8b9c0d1",
"maxUsages": null,
"name": null,
"usedCount": 0,
"trialDurationDays": null,
"expiresAt": null,
"createdAt": "2024-01-14T00:00:00.000Z"
}
]
}{
"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
List of free trial links
The creator's active free trial links
Show child attributes
Show child attributes
Was this page helpful?