curl --request GET \
--url https://api.fanvue.com/v1/media-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/media-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/media-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://fanvue.com/creator/fvml-3",
"price": 1999,
"mediaUuids": [
"550e8400-e29b-41d4-a716-446655440010"
],
"clicks": 128,
"unlocks": 12,
"earnings": 23988,
"createdAt": "2025-01-16T14:20:00.000Z"
}
],
"nextCursor": "k0FQ1m9yb3ZpZGVkQnlUaGVBUEk",
"total": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}List media links (cursor-paginated)
List the authenticated creator’s media links, newest first, with keyset pagination. Soft-deleted links, and links whose media is no longer available, are excluded. Keyset pagination is stable under concurrent writes and has constant per-page cost, unlike the offset-paginated v0 endpoint. Page with the opaque nextCursor. All amounts are integer minor units of the currency (e.g. cents).
curl --request GET \
--url https://api.fanvue.com/v1/media-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/v1/media-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/media-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"url": "https://fanvue.com/creator/fvml-3",
"price": 1999,
"mediaUuids": [
"550e8400-e29b-41d4-a716-446655440010"
],
"clicks": 128,
"unlocks": 12,
"earnings": 23988,
"createdAt": "2025-01-16T14:20:00.000Z"
}
],
"nextCursor": "k0FQ1m9yb3ZpZGVkQnlUaGVBUEk",
"total": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}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
"2025-06-26"
Query Parameters
Opaque pagination cursor from a previous response's nextCursor
Number of items to return (1-50, default: 15)
1 <= x <= 50Response
Cursor-paginated list of media links
Was this page helpful?