List promotions
curl --request GET \
--url https://api.fanvue.com/v1/promotions \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/promotions"
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/promotions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "d4e5f6a7-8b9c-4d1e-a2b3-c4d5e6f7a8b9",
"type": "discount",
"discountPercent": 20,
"freeTrialDays": null,
"availableToGroup": "new_subscribers",
"endsAt": "2024-02-15T00:00:00.000Z",
"maxUsages": 100,
"usedCount": 12,
"message": "20% off your first month!",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e5f6a7b8-9c0d-4e2f-b3c4-d5e6f7a8b9c0",
"type": "free_trial",
"discountPercent": null,
"freeTrialDays": 7,
"availableToGroup": "followers",
"endsAt": null,
"maxUsages": null,
"usedCount": 3,
"message": null,
"createdAt": "2024-01-14T00:00:00.000Z"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Promotions
List promotions
List the authenticated creator’s active (non-stopped) subscription promotions.
GET
/
v1
/
promotions
List promotions
curl --request GET \
--url https://api.fanvue.com/v1/promotions \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/promotions"
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/promotions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "d4e5f6a7-8b9c-4d1e-a2b3-c4d5e6f7a8b9",
"type": "discount",
"discountPercent": 20,
"freeTrialDays": null,
"availableToGroup": "new_subscribers",
"endsAt": "2024-02-15T00:00:00.000Z",
"maxUsages": 100,
"usedCount": 12,
"message": "20% off your first month!",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e5f6a7b8-9c0d-4e2f-b3c4-d5e6f7a8b9c0",
"type": "free_trial",
"discountPercent": null,
"freeTrialDays": 7,
"availableToGroup": "followers",
"endsAt": null,
"maxUsages": null,
"usedCount": 3,
"message": null,
"createdAt": "2024-01-14T00:00:00.000Z"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<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"
Response
List of promotions
The creator's active (non-stopped) promotions
Show child attributes
Show child attributes
Was this page helpful?