Get a published app store app's full listing
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid} \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}"
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}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "00000000-0000-4000-8000-000000000001",
"name": "Content Studio",
"tagline": "AI-assisted content generation for creators",
"description": "Generate captions, ideas and post drafts tailored to your audience.",
"logoUrl": "https://cdn.fanvue.com/app-store/content-studio/logo.png",
"appUrl": "https://contentstudio.example.com",
"pricingType": "monthly",
"rating": {
"average": 4.6,
"count": 128
},
"developer": {
"name": "Content Studio Inc.",
"handle": "contentstudio"
},
"descriptionTitle": "Create more, faster",
"descriptionBody": "Content Studio turns a few prompts into ready-to-post captions, hooks and ideas, all matched to your voice.",
"highlights": [
"AI captions",
"Idea generator",
"Brand voice matching"
],
"heroImageUrl": "https://cdn.fanvue.com/app-store/content-studio/hero.png",
"previewImageUrls": [
"https://cdn.fanvue.com/app-store/content-studio/preview-1.png"
],
"galleryImageUrls": [
"https://cdn.fanvue.com/app-store/content-studio/gallery-1.png"
],
"pricingPlans": [
{
"uuid": "00000000-0000-4000-8000-000000000002",
"name": "Pro Monthly",
"description": "Everything you need to scale your content.",
"billingType": "recurring",
"interval": "monthly",
"price": 999,
"currencyCode": "USD",
"status": "active",
"highlights": [
"Unlimited generations",
"Priority support"
]
}
],
"ratingDistribution": [
{
"rating": 5,
"proportion": 0.72,
"count": 92
},
{
"rating": 4,
"proportion": 0.18,
"count": 23
},
{
"rating": 3,
"proportion": 0.06,
"count": 8
},
{
"rating": 2,
"proportion": 0.02,
"count": 3
},
{
"rating": 1,
"proportion": 0.02,
"count": 2
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Apps
Get a published app store app's full listing
Returns the full listing for a single published app: description body, highlights, screenshots, pricing plans and rating distribution.
GET
/
apps
/
{appUuid}
Get a published app store app's full listing
curl --request GET \
--url https://api.fanvue.com/apps/{appUuid} \
--header 'Authorization: Bearer <token>' \
--header 'X-Fanvue-API-Version: <x-fanvue-api-version>'import requests
url = "https://api.fanvue.com/apps/{appUuid}"
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}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "00000000-0000-4000-8000-000000000001",
"name": "Content Studio",
"tagline": "AI-assisted content generation for creators",
"description": "Generate captions, ideas and post drafts tailored to your audience.",
"logoUrl": "https://cdn.fanvue.com/app-store/content-studio/logo.png",
"appUrl": "https://contentstudio.example.com",
"pricingType": "monthly",
"rating": {
"average": 4.6,
"count": 128
},
"developer": {
"name": "Content Studio Inc.",
"handle": "contentstudio"
},
"descriptionTitle": "Create more, faster",
"descriptionBody": "Content Studio turns a few prompts into ready-to-post captions, hooks and ideas, all matched to your voice.",
"highlights": [
"AI captions",
"Idea generator",
"Brand voice matching"
],
"heroImageUrl": "https://cdn.fanvue.com/app-store/content-studio/hero.png",
"previewImageUrls": [
"https://cdn.fanvue.com/app-store/content-studio/preview-1.png"
],
"galleryImageUrls": [
"https://cdn.fanvue.com/app-store/content-studio/gallery-1.png"
],
"pricingPlans": [
{
"uuid": "00000000-0000-4000-8000-000000000002",
"name": "Pro Monthly",
"description": "Everything you need to scale your content.",
"billingType": "recurring",
"interval": "monthly",
"price": 999,
"currencyCode": "USD",
"status": "active",
"highlights": [
"Unlimited generations",
"Priority support"
]
}
],
"ratingDistribution": [
{
"rating": 5,
"proportion": 0.72,
"count": 92
},
{
"rating": 4,
"proportion": 0.18,
"count": 23
},
{
"rating": 3,
"proportion": 0.06,
"count": 8
},
{
"rating": 2,
"proportion": 0.02,
"count": 3
},
{
"rating": 1,
"proportion": 0.02,
"count": 2
}
]
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"error": "<string>",
"message": "<string>",
"nextVersion": "<string>"
}{
"error": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}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
The app's full store listing
User-facing app title.
Marketing description of the app.
Available options:
free, monthly Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?