Subscriptions
List subscriptions
Returns a paginated list of subscriptions. Supports filtering by status, customer ID, and tag IDs.
GET
List subscriptions
Authorizations
API key authentication. Pass your API key as a Bearer token.
Headers
Available options:
2026-04-01 Query Parameters
Filter by customer ID
Example:
"cust_abc123"
Number of items per page
Example:
20
Number of items to skip
Example:
0
Sort field and direction in format field:order
Example:
"activated_at:desc"
Filter by subscription status. Pass a comma-separated list to match any.
Available options:
draft, scheduled, active, paused, canceled, completed Example:
"active"
Filter by tag IDs (comma-separated to match any)
Example:
"tag_abc123"
Previous
Create a subscriptionCreates a new subscription for a customer. Supports three creation patterns: raw pricing in the request body, from a plan, or from a plan with per-customer overrides. Subscriptions are created in `draft` status and must be activated unless `auto_activate: true` is set. See the [Creating a Subscription](/docs/api-reference/v2/examples/creating-a-subscription) examples for concrete request bodies and the bundle variants.
Next
List subscriptions