curl --request GET \
--url https://api.fanvue.com/v1/posts/{uuid}/comments \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/posts/{uuid}/comments"
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/posts/{uuid}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"text": "Great content! Thanks for sharing!",
"user": {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"handle": "sarah",
"displayName": "Sarah Johnson",
"nickname": null,
"isTopSpender": true
},
"createdAt": "2024-01-15T00:00:00.000Z",
"updatedAt": null
}
],
"nextCursor": "k0FQ1m9yZXN0aWdpb3VzLW9wYXF1ZS1jdXJzb3I"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Get comments for a post (cursor-paginated)
Cursor-paginated list of comments on a specific post, most recent first. Only the post owner can view comments.
v1-experimental Breaking Change: Switched from offset-based pagination (page/size) to keyset cursor pagination. Page with the opaque nextCursor; keyset pagination stays stable under concurrent comments, unlike the offset-paginated v0 endpoint.
curl --request GET \
--url https://api.fanvue.com/v1/posts/{uuid}/comments \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/posts/{uuid}/comments"
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/posts/{uuid}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"text": "Great content! Thanks for sharing!",
"user": {
"uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"handle": "sarah",
"displayName": "Sarah Johnson",
"nickname": null,
"isTopSpender": true
},
"createdAt": "2024-01-15T00:00:00.000Z",
"updatedAt": null
}
],
"nextCursor": "k0FQ1m9yZXN0aWdpb3VzLW9wYXF1ZS1jdXJzb3I"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}read:post— Read posts, including post details, comments, likes, and tips.
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
"2025-06-26"
Path Parameters
UUID of the post to retrieve comments for
Query Parameters
Opaque pagination cursor from a previous response's nextCursor
Number of items to return (1-50, default: 15)
1 <= x <= 50Was this page helpful?