List media links
curl --request GET \
--url https://api.fanvue.com/media-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/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/media-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "b3c4d5e6-7f8a-4b9c-8d0e-1f2a3b4c5d6e",
"url": "https://www.fanvue.com/creatorhandle/media/fvml-12",
"price": 1999,
"mediaUuids": [
"c4d5e6f7-8a9b-4c0d-9e1f-2a3b4c5d6e7f",
"d5e6f7a8-9b0c-4d1e-af2a-3b4c5d6e7f8a"
],
"clicks": 128,
"unlocks": 14,
"earnings": 27986,
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e6f7a8b9-0c1d-4e2f-ba3b-4c5d6e7f8a9b",
"url": "https://www.fanvue.com/creatorhandle/media/fvml-11",
"price": 500,
"mediaUuids": [
"f7a8b9c0-1d2e-4f3a-8b4c-5d6e7f8a9b0c"
],
"clicks": 42,
"unlocks": 0,
"earnings": 0,
"createdAt": "2024-01-14T00:00:00.000Z"
}
],
"pagination": {
"page": 1,
"size": 2,
"hasMore": false
}
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}Media Links
List media links
List the authenticated creator’s media links, newest first. Soft-deleted links, and links whose media is no longer available, are excluded. All amounts are integer minor units of the currency (e.g. cents).
GET
/
media-links
List media links
curl --request GET \
--url https://api.fanvue.com/media-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/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/media-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "b3c4d5e6-7f8a-4b9c-8d0e-1f2a3b4c5d6e",
"url": "https://www.fanvue.com/creatorhandle/media/fvml-12",
"price": 1999,
"mediaUuids": [
"c4d5e6f7-8a9b-4c0d-9e1f-2a3b4c5d6e7f",
"d5e6f7a8-9b0c-4d1e-af2a-3b4c5d6e7f8a"
],
"clicks": 128,
"unlocks": 14,
"earnings": 27986,
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e6f7a8b9-0c1d-4e2f-ba3b-4c5d6e7f8a9b",
"url": "https://www.fanvue.com/creatorhandle/media/fvml-11",
"price": 500,
"mediaUuids": [
"f7a8b9c0-1d2e-4f3a-8b4c-5d6e7f8a9b0c"
],
"clicks": 42,
"unlocks": 0,
"earnings": 0,
"createdAt": "2024-01-14T00:00:00.000Z"
}
],
"pagination": {
"page": 1,
"size": 2,
"hasMore": false
}
}{
"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"
Was this page helpful?