List content collections (cursor-paginated)
curl --request GET \
--url https://api.fanvue.com/v1/collections \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/collections"
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/collections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"label": "Behind the scenes",
"createdAt": "2025-01-16T14:20:00.000Z"
},
{
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"label": "Promos",
"createdAt": "2025-01-15T10:30:00.000Z"
}
],
"nextCursor": "k0FQ1m9yb3ZpZGVkQnlUaGVBUEk",
"total": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}Media
List content collections (cursor-paginated)
Returns a cursor-paginated list of the authenticated creator’s content collections, newest first. Keyset pagination is stable under concurrent writes and has constant per-page cost, unlike the offset-paginated v0 endpoint. Page with the opaque nextCursor.
GET
/
v1
/
collections
List content collections (cursor-paginated)
curl --request GET \
--url https://api.fanvue.com/v1/collections \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/collections"
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/collections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"label": "Behind the scenes",
"createdAt": "2025-01-16T14:20:00.000Z"
},
{
"uuid": "550e8400-e29b-41d4-a716-446655440001",
"label": "Promos",
"createdAt": "2025-01-15T10:30:00.000Z"
}
],
"nextCursor": "k0FQ1m9yb3ZpZGVkQnlUaGVBUEk",
"total": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}Required scope
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
Example:
"2025-06-26"
Query Parameters
Opaque pagination cursor from a previous response's nextCursor
Number of items to return (1-50, default: 15)
Required range:
1 <= x <= 50Response
Cursor-paginated list of collections
Was this page helpful?