List the authenticated user's one-time (app-OTP) payments for an app
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid}/payments/me \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}/payments/me"
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/apps/{appUuid}/payments/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "00000000-0000-4000-8000-0000000000aa",
"appUuid": "00000000-0000-4000-8000-000000000001",
"buyerUuid": "00000000-0000-4000-8000-000000000003",
"planUuid": "00000000-0000-4000-8000-000000000002",
"invoiceNumber": "FVE-20260619-1234",
"billingReferenceId": "appotp_000000001VgEh72lXvTXkL",
"clientReferenceId": "order_9f8c",
"status": "completed",
"amount": 4999,
"currency": "USD",
"externalPaymentId": "pi_3Q1example",
"createdAt": "2026-06-19T08:30:00.000Z",
"updatedAt": "2026-06-19T08:30:05.000Z"
}
],
"nextCursor": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Apps
List the authenticated user's one-time (app-OTP) payments for an app
read:self. Returns only the authenticated user’s own one-time payments for an app; filtered to the caller’s identity, never owner-gated, so it cannot surface another buyer’s data.
GET
/
apps
/
{appUuid}
/
payments
/
me
List the authenticated user's one-time (app-OTP) payments for an app
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid}/payments/me \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}/payments/me"
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/apps/{appUuid}/payments/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"uuid": "00000000-0000-4000-8000-0000000000aa",
"appUuid": "00000000-0000-4000-8000-000000000001",
"buyerUuid": "00000000-0000-4000-8000-000000000003",
"planUuid": "00000000-0000-4000-8000-000000000002",
"invoiceNumber": "FVE-20260619-1234",
"billingReferenceId": "appotp_000000001VgEh72lXvTXkL",
"clientReferenceId": "order_9f8c",
"status": "completed",
"amount": 4999,
"currency": "USD",
"externalPaymentId": "pi_3Q1example",
"createdAt": "2026-06-19T08:30:00.000Z",
"updatedAt": "2026-06-19T08:30:05.000Z"
}
],
"nextCursor": null
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Required scope
read:self— Access your own user profile information, including basic account details and settings.
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"
Path Parameters
Example:
"00000000-0000-4000-8000-000000000001"
Query Parameters
Number of results to return (default 50, max 100).
Required range:
x <= 100Opaque cursor for the next page, from a prior response.
Was this page helpful?