List checkout links
curl --request GET \
--url https://api.fanvue.com/checkout-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/checkout-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/checkout-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "b3c4d5e6-7f8a-4b9c-8d0e-1f2a3b4c5d6e",
"name": "Coaching call",
"description": "Instagram bio link",
"url": "https://www.fanvue.com/checkout/fvcl_4WqZz1kXo9DdPp2sT7yRfM",
"price": 1999,
"currency": "USD",
"isRecurring": false,
"cycleLength": null,
"cycleUnit": null,
"productUuid": "c4d5e6f7-8a9b-4c0d-9e1f-2a3b4c5d6e7f",
"productPriceUuid": "d5e6f7a8-9b0c-4d1e-af2a-3b4c5d6e7f8a",
"status": "active",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e6f7a8b9-0c1d-4e2f-ba3b-4c5d6e7f8a9b",
"name": "Monthly membership",
"description": null,
"url": "https://www.fanvue.com/checkout/fvcl_9XrYy2lWn8CcOq3tU6zSgN",
"price": 2500,
"currency": "USD",
"isRecurring": true,
"cycleLength": 1,
"cycleUnit": "month",
"productUuid": "f7a8b9c0-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"productPriceUuid": "a8b9c0d1-2e3f-4a4b-9c5d-6e7f8a9b0c1d",
"status": "disabled",
"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>"
}Checkout Links
List checkout links
List the authenticated creator’s checkout links, newest first. Soft-deleted links are excluded; disabled links are included with status: disabled. All amounts are integer minor units of the currency (e.g. cents).
GET
/
checkout-links
List checkout links
curl --request GET \
--url https://api.fanvue.com/checkout-links \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/checkout-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/checkout-links', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "b3c4d5e6-7f8a-4b9c-8d0e-1f2a3b4c5d6e",
"name": "Coaching call",
"description": "Instagram bio link",
"url": "https://www.fanvue.com/checkout/fvcl_4WqZz1kXo9DdPp2sT7yRfM",
"price": 1999,
"currency": "USD",
"isRecurring": false,
"cycleLength": null,
"cycleUnit": null,
"productUuid": "c4d5e6f7-8a9b-4c0d-9e1f-2a3b4c5d6e7f",
"productPriceUuid": "d5e6f7a8-9b0c-4d1e-af2a-3b4c5d6e7f8a",
"status": "active",
"createdAt": "2024-01-15T00:00:00.000Z"
},
{
"uuid": "e6f7a8b9-0c1d-4e2f-ba3b-4c5d6e7f8a9b",
"name": "Monthly membership",
"description": null,
"url": "https://www.fanvue.com/checkout/fvcl_9XrYy2lWn8CcOq3tU6zSgN",
"price": 2500,
"currency": "USD",
"isRecurring": true,
"cycleLength": 1,
"cycleUnit": "month",
"productUuid": "f7a8b9c0-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"productPriceUuid": "a8b9c0d1-2e3f-4a4b-9c5d-6e7f8a9b0c1d",
"status": "disabled",
"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?