v1
latestOpenAPI 3.1.02026-07-2684271522.2 KBList Subscriptions
Returns a list of your subscriptions, most recent first. Optionally filter by customer or status. Use expand (or expand_customer) to inline related objects such as the customer, latest invoice, or item prices.
Query parameters
Filter by customer ID.
Filter by customer ID.
If true, expands the customer object in the response.
If true, expands the customer object in the response.
A cursor for use in pagination. starting_after is a subscription ID that defines your place in the list. For instance, if you make a list request and receive 20 subscriptions, ending with fsub_xyz, your subsequent call can include starting_after=fsub_xyz to fetch the next page.
A cursor for use in pagination. starting_after is a subscription ID that defines your place in the list. For instance, if you make a list request and receive 20 subscriptions, ending with fsub_xyz, your subsequent call can include starting_after=fsub_xyz to fetch the next page.
A cursor for use in pagination. ending_before is a subscription ID that defines your place in the list. For instance, if you make a list request and receive 20 subscriptions, starting with fsub_abc, your subsequent call can include ending_before=fsub_abc to fetch the previous page.
A cursor for use in pagination. ending_before is a subscription ID that defines your place in the list. For instance, if you make a list request and receive 20 subscriptions, starting with fsub_abc, your subsequent call can include ending_before=fsub_abc to fetch the previous page.
The current lifecycle status of the subscription.
Filter by subscription status.
Number of objects to skip before returning results.
Number of objects to skip before returning results.
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Comma-separated list of related objects to expand in the response.
Comma-separated list of related objects to expand in the response.
Response
An envelope wrapping a list of subscription objects.
Example response
{
"subscriptions": [
{
"subscription_id": "fsub_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"created_at": "2026-06-15T14:30:00Z",
"items": [],
"status": "incomplete",
"cancel_at_period_end": false,
"metadata": {
"order_id": "8842",
"channel": "shopify"
},
"test_mode": false,
"cancel_at": "2026-06-15T14:30:00Z",
"canceled_at": "2026-06-15T14:30:00Z"
}
]
}