List subscriptions
Returns subscriptions owned by the authenticated API key owner, newest first. Use the limit and offset query parameters to page through results.
Authorizations
Developer API key generated in the app. Keys carry scopes; a read key can call list, get, analytics, and audit endpoints, while a write key additionally allows create, update, cancel, pause, resume, and delete.
Query Parameters
Maximum number of subscriptions to return (1-100, default 50).
1 <= x <= 100Number of subscriptions to skip from the start of the list (default 0).
x >= 0Filter by lifecycle state. Lifecycle state. active means billing; paused means temporarily stopped; cancelled means no longer billing but kept for history.
active, paused, cancelled Exact category match, for example "Streaming".
Filter by billing period. Billing cadence used to calculate nextPaymentDate.
monthly, yearly, custom Case-insensitive search over the subscription name.
Return subscriptions whose nextPaymentDate is on or before this date. Combine with status=active to find renewals due soon. Calendar date without time, always in YYYY-MM-DD format.
^\d{4}-\d{2}-\d{2}$"2026-06-01"
Sort order; prefix with - for descending, for example -nextPaymentDate.
createdAt, -createdAt, nextPaymentDate, -nextPaymentDate, amount, -amount, name, -name