---
title: "Get current user subscription for an installed app"
method: GET
path: "/apps/{appUuid}/subscription/me"
---

# Get current user subscription for an installed app

`GET /apps/{appUuid}/subscription/me`

Returns paid entitlement for the authenticated user for the app identified by `appUuid`. The OAuth access token must belong to that app.

    When the authenticated user is an agency team member, the response also includes a `managedCreators` array containing the subscription state for every creator the team member is assigned to. The agency user's own top-level subscription will be `status: "none"` (agency team members do not install apps themselves). For non-agency users `managedCreators` is an empty array.

## Path parameters

- `appUuid` string, uuid, required

## Headers

- `X-Fanvue-API-Version` string, required

## Response `200`

Current-user subscription entitlement for the app

- object
  - `appUuid` string, uuid, required
  - `userUuid` string, uuid, required
  - `hasActiveSubscription` boolean, required
  - `status` 'active' | 'pending' | 'cancelled' | 'none', required
  - `planUuid` string, uuid, nullable, required
  - `planName` string, nullable, required
  - `currentPeriodEnd` string, nullable, required
  - `cancelAtPeriodEnd` boolean, required
  - `managedCreators` object[], required
    - `userUuid` string, uuid, required
    - `hasActiveSubscription` boolean, required
    - `status` 'active' | 'pending' | 'cancelled' | 'none', required
    - `planUuid` string, uuid, nullable, required
    - `planName` string, nullable, required
    - `currentPeriodEnd` string, nullable, required
    - `cancelAtPeriodEnd` boolean, required

## Other responses

- `400` — Bad Request - API version not supported OR validation failed OR invalid UUID
- `401` — Unauthorized Response
- `403` — Unauthorized Response
- `404` — App not found for this user
- `410` — API version no longer supported (sunset)
- `429` — Too many requests - rate limit exceeded
- `502` — Failed to load subscription from upstream
- `503` — Developer API upstream is not configured

---

[API](https://skmtc.net/fanvue/apis/fanvue-api.md) · [All operations](https://skmtc.net/fanvue/apis/fanvue-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fanvue/fanvue-api/revisions/c5ddcd5c7e72/schema)
