---
title: "Get current subscription price"
method: GET
path: "/premium/current-subscription-price"
tags: ["Premium"]
---

# Get current subscription price

`GET /premium/current-subscription-price`

Returns the exact price the authenticated user is being billed for their active Stripe subscription, including whether they are on a grandfathered legacy rate.

## Response `200`

Success

- CurrentSubscriptionPriceResponse, nullable
  - `price_id` string, required — The Stripe price ID the user is currently billed against
  - `amount_minor` integer, required — The amount the user is actually charged, in the currency minor unit
  - `currency` 'USD' | 'EUR' | 'BRL' | 'INR' | 'PLN' | 'TRY', required — Currency of the charged amount
  - `billing_cycle` 'monthly' | 'yearly', required — The recurring billing cycle of the active subscription
  - `is_grandfathered` boolean, required — Whether the user is on a legacy price that no longer matches the current list price
  - `list_amount_minor` integer, nullable, required — The current list price for the same cycle/currency, in the currency minor unit
  - `list_price_id` string, nullable, required — The current list Stripe price ID for the same cycle/currency

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `401` — Unauthorized - Authentication is required or the token is invalid
- `403` — Forbidden - You do not have permission to perform this action
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluxer/fluxer-api/revisions/d9c706133cc5/schema)
