Get app pricing subscription lifecycle status
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid}/subscription-status \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}/subscription-status"
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}/subscription-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"appUuid": "00000000-0000-4000-8000-000000000001",
"appName": "Example App",
"availability": "complete",
"overallStatus": "pendingSetup",
"pricingPlans": [
{
"uuid": "00000000-0000-4000-8000-000000000002",
"name": "Monthly",
"billingType": "recurring",
"interval": "monthly",
"price": 999,
"currencyCode": "USD",
"status": "pending_setup",
"checkoutUrl": null
},
{
"uuid": "00000000-0000-4000-8000-000000000005",
"name": "Yearly",
"billingType": "recurring",
"interval": "yearly",
"price": 9990,
"currencyCode": "USD",
"status": "active",
"checkoutUrl": "https://www.fanvue.com/checkout/app_000000001VgEh72lXvTXkL"
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Popular endpoints
Get app pricing subscription lifecycle status
Returns pricing plan lifecycle states for a developer-owned app (pending_setup, active, withdrawn).
GET
/
apps
/
{appUuid}
/
subscription-status
Get app pricing subscription lifecycle status
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid}/subscription-status \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}/subscription-status"
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}/subscription-status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"appUuid": "00000000-0000-4000-8000-000000000001",
"appName": "Example App",
"availability": "complete",
"overallStatus": "pendingSetup",
"pricingPlans": [
{
"uuid": "00000000-0000-4000-8000-000000000002",
"name": "Monthly",
"billingType": "recurring",
"interval": "monthly",
"price": 999,
"currencyCode": "USD",
"status": "pending_setup",
"checkoutUrl": null
},
{
"uuid": "00000000-0000-4000-8000-000000000005",
"name": "Yearly",
"billingType": "recurring",
"interval": "yearly",
"price": 9990,
"currencyCode": "USD",
"status": "active",
"checkoutUrl": "https://www.fanvue.com/checkout/app_000000001VgEh72lXvTXkL"
}
]
}{
"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"
Response
Pricing plan lifecycle summary for the app
Available options:
complete, horizonUnavailable Available options:
notConfigured, pendingSetup, active, withdrawn, mixed, unavailable Show child attributes
Show child attributes
Was this page helpful?