---
title: "Get Stripe Subscriptions"
method: GET
path: "/subscribers/{id_or_email}/stripe-subscriptions"
tags: ["Subscribers"]
---

# Get Stripe Subscriptions

`GET /subscribers/{id_or_email}/stripe-subscriptions`

List Stripe subscriptions for a specific subscriber

## Path parameters

- `id_or_email` string, required

## Query parameters

- `page` integer — The page number of the paginated response.

## Response `200`

OK

- StripeSubscriptionPage
  - `results` StripeSubscription[], required — The list of results for this page.
    - `subscription_id` string, required — The Stripe subscription ID (e.g. `sub_...`).
    - `url` string, required — A deep link to the subscription in the Stripe dashboard.
    - `creation_date` string, date-time, required — The date and time at which the object was first created.
    - `ending_date` string, date-time, nullable — When the subscription ended, or null if still active.
    - `amount` integer, nullable — The subscription amount in the smallest currency unit (e.g. cents). Null for tiered-pricing plans.
    - `currency` string, required — The three-letter ISO currency code (e.g. `usd`).
    - `cadence` string, required — The billing cadence (e.g. `month`, `year`).
    - `status` string, required — The Stripe subscription status (e.g. `active`, `canceled`, `past_due`).
    - `application_fee_percent` number, nullable — The application fee percent for the subscription.
    - `source` 'substack' | 'buttondown', nullable — Buttondown attempts to detect the source of a subscription, but this is not always possible.
    - `product` string, nullable — The name of the product which the subscriber is subscribed to. (You can override this by setting the `buttondown_template_facing_id` metadata on the product in Stripe.)
  - `next` string, nullable — The URL to the next page of results, if any.
  - `previous` string, nullable — The URL to the previous page of results, if any.
  - `count` integer, required — The total number of results across all pages.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `429` — Too Many Requests

---

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