List automated messages
curl --request GET \
--url https://api.fanvue.com/v1/chats/automated-messages \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/chats/automated-messages"
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/chats/automated-messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"trigger": "new_subscriber",
"enabled": true,
"text": "Hey! Thanks for subscribing! Check out my latest exclusive content π₯",
"price": 999,
"mediaUuids": [
"7c9e6679-7425-40de-944b-e07fc1f90ae7"
],
"mediaPreviewUuid": "8d9e6679-7425-40de-944b-e07fc1f90ae8",
"updatedAt": "2026-07-01T12:00:00.000Z"
},
{
"trigger": "new_follower",
"enabled": true,
"text": "Thanks for the follow! π",
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": "2026-06-15T09:30:00.000Z"
},
{
"trigger": "subscription_canceled",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "re_subscribed",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "renewed",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "new_purchase",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "first_message_reply",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Automated messages
List automated messages
Returns the per-trigger state of the authenticated creatorβs automated messages. All triggers are always listed; disabled triggers have enabled: false and null content fields.
GET
/
v1
/
chats
/
automated-messages
List automated messages
curl --request GET \
--url https://api.fanvue.com/v1/chats/automated-messages \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/chats/automated-messages"
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/chats/automated-messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"trigger": "new_subscriber",
"enabled": true,
"text": "Hey! Thanks for subscribing! Check out my latest exclusive content π₯",
"price": 999,
"mediaUuids": [
"7c9e6679-7425-40de-944b-e07fc1f90ae7"
],
"mediaPreviewUuid": "8d9e6679-7425-40de-944b-e07fc1f90ae8",
"updatedAt": "2026-07-01T12:00:00.000Z"
},
{
"trigger": "new_follower",
"enabled": true,
"text": "Thanks for the follow! π",
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": "2026-06-15T09:30:00.000Z"
},
{
"trigger": "subscription_canceled",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "re_subscribed",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "renewed",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "new_purchase",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
},
{
"trigger": "first_message_reply",
"enabled": false,
"text": null,
"price": null,
"mediaUuids": [],
"mediaPreviewUuid": null,
"updatedAt": null
}
]
}{
"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
Per-trigger automated message state
Per-trigger state for all automated message triggers
Show child attributes
Show child attributes
Was this page helpful?