Subscriptions

In Lemon Squeezy, a subscription is created when a subscription product is purchased and will bill the customer on a recurring basis.

A subscription belongs to a Store and is associated with a Customer, an Order, an Order Item, a Product, a Variant, Subscription invoices and Subscription items.


The subscription object

Attributes


store_id

The ID of the store this subscription belongs to.


customer_id

The ID of the customer this subscription belongs to.


order_id

The ID of the order associated with this subscription.


order_item_id

The ID of the order item associated with this subscription.


product_id

The ID of the product associated with this subscription.


variant_id

The ID of the variant associated with this subscription.


product_name

The name of the product.


variant_name

The name of the variant.


user_name

The full name of the customer.


user_email

The email address of the customer.


status

The status of the subscription. One of

  • on_trial
  • active
  • paused - The subscription's payment collection has been paused. See the pause attribute below for more information.
  • past_due - A renewal payment has failed. The subscription will go through 4 payment retries over the course of 2 weeks. If a retry is successful, the subscription's status changes back to active. If all four retries are unsuccessful, the status is changed to unpaid.
  • unpaid - Payment recovery has been unsuccessful in capturing a payment after 4 attempts. If dunning is enabled in your store, your dunning rules now will determine if the subscription becomes expired after a certain period. If dunning is turned off, the status remains unpaid (it is up to you to determine what this means for users of your product).
  • cancelled - The customer or store owner has cancelled future payments, but the subscription is still technically active and valid (on a "grace period"). The ends_at value shows the date-time when the subscription is scheduled to expire.
  • expired - The subscription has ended (either it had previously been cancelled and the grace period created from its final payment has run out, or it was previously unpaid and the subscription was not re-activated during dunning). The ends_at value shows the date-time when the subscription expired. Customers should no longer have access to your product.

status_formatted

The title-case formatted status of the subscription.

For example, when status is active, status_formatted will be Active and past_due will be Past due.


card_brand

Lowercase brand of the card used to pay for the latest subscription payment. One of

-visa

  • mastercard
  • amex
  • discover
  • jcb
  • diners
  • unionpay

Will be empty for non-card payments.


card_last_four

The last 4 digits of the card used to pay for the latest subscription payment. Will be empty for non-card payments.


pause

An object containing the payment collection pause behaviour options for the subscription, if set. Options include:

  • mode - Defines payment pause behaviour, can be one of:

    • void - If you can't offer your services for a period of time (for maintenance as an example), you can void invoices so your customers aren't charged.
    • free - Offer your subscription services for free, whilst halting payment collection.
  • resumes_at - An ISO 8601 formatted date-time string indicating when the subscription will continue collecting payments.

For a subscription that isn't in the paused state, the pause object will be null.


cancelled

A boolean indicating if the subscription has been cancelled.

When cancelled is true:

  • status will be cancelled
  • ends_at will be populated with a date-time string

trial_ends_at

If the subscription has a free trial (status is on_trial), this will be an ISO 8601 formatted date-time string indicating when the trial period ends. For all other status values, this will be null.


billing_anchor

An integer representing a day of the month (21 equals 21st day of the month). This is the day on which subscription invoice payments are collected.


first_subscription_item

An object representing the first subscription item belonging to this subscription.

  • id - The ID of the subscription item.
  • subscription_id - The ID of the subscription.
  • price_id - The ID of the price
  • quantity - The quantity of the subscription item.
  • created_at - An ISO 8601 formatted date-time string indicating when the subscription item was created.
  • updated_at - An ISO 8601 formatted date-time string indicating when the subscription item was last updated.

Will be null if there is no subscription item, for example if the subscription is currently in a free trial.


urls

An object of customer-facing URLs for managing the subscription. It contains:

  • update_payment_method - A pre-signed URL for managing payment and billing information for the subscription. This can be used in conjunction with Lemon.js to allow your customer to change their billing information from within your application. The URL is valid for 24 hours from time of request.
  • customer_portal - A pre-signed URL to the Customer Portal, which allows customers to fully manage their subscriptions and billing information from within your application. The URL is valid for 24 hours from time of request.
  • update_customer_portal - A pre-signed URL for upgrading/downgrading the subscription in the Customer Portal. This is only used for subscriptions setup through PayPal payment and will return null on all other payment types. The URL is valid for 24 hours from time of request.

renews_at

An ISO 8601 formatted date-time string indicating the end of the current billing cycle, and when the next invoice will be issued. This also applies to past_due subscriptions; renews_at will reflect the next renewal charge attempt.


ends_at

If the subscription has as status of cancelled or expired, this will be an ISO 8601 formatted date-time string indicating when the subscription expires (or expired). For all other status values, this will be null.


created_at

An ISO 8601 formatted date-time string indicating when the object was created.


updated_at

An ISO 8601 formatted date-time string indicating when the object was last updated.


test_mode

A boolean indicating if the object was created within test mode.

Subscription object

{ "type": "subscriptions", "id": "1", "attributes": { "store_id": 1, "customer_id": 1, "order_id": 1, "order_item_id": 1, "product_id": 1, "variant_id": 1, "product_name": "Example Product", "variant_name": "Example Variant", "user_name": "Darlene Daugherty", "user_email": "[email protected]", "status": "active", "status_formatted": "Active", "card_brand": "visa", "card_last_four": "42424", "pause": null, "cancelled": false, "trial_ends_at": null, "billing_anchor": 12, "first_subscription_item": { "id": 1, "subscription_id": 1, "price_id": 1, "quantity": 5, "created_at": "2021-08-11T13:47:28.000000Z", "updated_at": "2021-08-11T13:47:28.000000Z" }, "urls": { "update_payment_method": "https://my-store.lemonsqueezy.com/subscription/1/payment-details?expires=1666869343&signature=9985e3bf9007840aeb3951412be475abc17439c449c1af3e56e08e45e1345413", "customer_portal": "https://my-store.lemonsqueezy.com/billing?expires=1666869343&signature=82ae290ceac8edd4190c82825dd73a8743346d894a8ddbc4898b97eb96d105a5", "customer_portal_update_subscription": "https://my-store.lemonsqueezy.com/billing/1/update?expires=1666869343&signature=e4fabc7ee703664d644bba9e79a9cd3dd00622308b335f3c166787f0b18999f2" }, "renews_at": "2022-11-12T00:00:00.000000Z", "ends_at": null, "created_at": "2021-08-11T13:47:27.000000Z", "updated_at": "2021-08-11T13:54:19.000000Z", "test_mode": false } }

Update a subscription

For a detailed look at how to manage subscriptions with the API, please read our Developer guide.

Update an existing subscription to specific parameters. With this endpoint, you can:

  • Upgrade or downgrade a subscripion to a different Variant.
  • Change payment pause collection behaviour
  • Update the billing date for when payments are collected

When changing the plan of a subscription, by default we prorate the charge for the next billing cycle. For example, if a customer buys your product on April 1st for $50, they'll be charged $50 immediately. If on April 15th they upgrade to your $100 product, on May 1st they'll be charged $125. This is made up of $100 for renewing, $50 of used time on your upgraded $100 plan from April 15th - May 1st, and then a credited -$25 for unused time on your $50 plan.

ChargeAmountRunning Total
Renew Charge$100$100
Upgrade plan partially used time$50$150
Unused time on previous $50 plan-$25$125

If downgrading a subscription, we'll issue a credit which is then applied on the next invoice.

Changing a subscription plan may change the billing date or charge immediately if:

  • The variant has a different billing cycle (from monthly to yearly, etc)
  • The subscription is no longer free, or is now free
  • A trial starts or ends

For all subscriptions that have PayPal as their payment system, the update endpoint will not modify the subscription. Instead the subscription object will have a value present in the urls.customer_portal_update_subscription key. You can use this value to redirect your customer to the Customer Portal to allow a succesful subscription modification.

Attributes


variant_id

The ID of the Variant you want to switch this subscription to. Required if changing a subscription's product/variant.


pause

An object containing the payment collection pause behaviour options for the subscription. Options include:

  • mode - Defines payment pause behaviour, can be one of:

    • void - If you can't offer your services for a period of time (for maintenance as an example), you can void invoices so your customers aren't charged.
    • free - Offer your subscription services for free, whilst halting payment collection.
  • resumes_at (optional) - An ISO 8601 formatted date-time string indicating when the subscription will continue collecting payments.

You can set the pause object to null to unpause the subscription.


cancelled

Set as true to cancel the subscription. You can resume a subscription (before the ends_at date) by setting this to false.


trial_ends_at

An ISO 8601 formatted date-time string indicating when the subscription's free trial should end.


billing_anchor

  • Use an integer representing a day of the month (21 equals 21st day of the month) to change the day on which subscription invoice payments are collected.
  • Use null or 0 to reset the billing anchor to the current date. Doing this will also remove an active trial.

Setting this value to a valid integer (1-31) will set the billing anchor to the next occurrence of that day. For example, if on the 21st of January you set the subscription billing anchor to the 1st, the next occurrence of that day is February 1st. All invoices from that point on will be generated on the 1st of the month.

If the current month doesn’t contain the day that matches your billing_anchor (for example, if the billing_anchor is 31 and the month is November), the customer will be charged on the last day of the month.

When setting a new billing anchor day, we calculate the next occurrence and issue a paid, prorated trial which ends on the next occurrence date. When the trial ends, the customer is charged for the full prorated amount.


invoice_immediately

If true, any updates to the subscription will be charged immediately. A new prorated invoice will be generated and payment attempted. Defaults to false. Note that this will be overridden by the disable_prorations option if used.

Read about proration in the Developer Guide


disable_prorations

If true, no proration will be charged and the customer will simply be charged the new price at the next renewal. Defaults to false. Note that this will override the invoice_immediately option if used.

Read about proration in the Developer Guide

PATCH /v1/subscriptions/:id

curl -X "PATCH" "https://api.lemonsqueezy.com/v1/subscriptions/1" -H 'Accept: application/vnd.api+json' -H 'Content-Type: application/vnd.api+json' -H 'Authorization: Bearer {api_key}' -d $'{ "data": { "type": "subscriptions", "id": "1", "attributes": { "variant_id": 11, "billing_anchor": 29, "trial_ends_at": "2024-04-20T10:30:00Z" } } }'

Returns

Returns a subscription object.

Response

{ "type": "subscriptions", "id": "1", "attributes": { "store_id": 1, "customer_id": 1, "order_id": 1, "order_item_id": 1, "product_id": 9, "variant_id": 11, "product_name": "New Plan Product", "variant_name": "New Plan Variant", "user_name": "Darlene Daugherty", "user_email": "[email protected]", "status": "active", "status_formatted": "Active", "pause": null, "cancelled": false, "trial_ends_at": null, "billing_anchor": 29, "first_subscription_item": { "id": 1, "subscription_id": 1, "price_id": 1, "quantity": 5, "created_at": "2021-08-11T13:47:28.000000Z", "updated_at": "2021-08-11T13:47:28.000000Z" }, "urls": { "update_payment_method": "https://my-store.lemonsqueezy.com/subscription/1/payment-details?expires=1666869343&signature=9985e3bf9007840aeb3951412be475abc17439c449c1af3e56e08e45e1345413", "customer_portal": "https://my-store.lemonsqueezy.com/billing?expires=1666869343&signature=82ae290ceac8edd4190c82825dd73a8743346d894a8ddbc4898b97eb96d105a5" }, "renews_at": "2022-11-12T00:00:00.000000Z", "ends_at": null, "created_at": "2021-08-11T13:47:27.000000Z", "updated_at": "2021-08-11T13:54:19.000000Z", "test_mode": false } }

Retrieve a subscription

Retrieves the subscription with the given ID.

GET /v1/subscriptions/:id

curl "https://api.lemonsqueezy.com/v1/subscriptions/1" -H 'Accept: application/vnd.api+json' -H 'Content-Type: application/vnd.api+json' -H 'Authorization: Bearer {api_key}'

Returns

Returns a subscription object.

Response

{ "jsonapi": { "version": "1.0" }, "links": { "self": "https://api.lemonsqueezy.com/v1/subscriptions/1" }, "data": { "type": "subscriptions", "id": "1", "attributes": { "store_id": 1, "customer_id": 1, "order_id": 1, "order_item_id": 1, "product_id": 1, "variant_id": 1, "product_name": "Example Product", "variant_name": "Example Variant", "user_name": "Darlene Daugherty", "user_email": "[email protected]", "status": "active", "status_formatted": "Active", "pause": null, "cancelled": false, "trial_ends_at": null, "billing_anchor": 12, "first_subscription_item": { "id": 1, "subscription_id": 1, "price_id": 1, "quantity": 5, "created_at": "2021-08-11T13:47:28.000000Z", "updated_at": "2021-08-11T13:47:28.000000Z" }, "urls": { "update_payment_method": "https://my-store.lemonsqueezy.com/subscription/1/payment-details?expires=1666869343&signature=9985e3bf9007840aeb3951412be475abc17439c449c1af3e56e08e45e1345413", "customer_portal": "https://my-store.lemonsqueezy.com/billing?expires=1666869343&signature=82ae290ceac8edd4190c82825dd73a8743346d894a8ddbc4898b97eb96d105a5" }, "renews_at": "2022-11-12T00:00:00.000000Z", "ends_at": null, "created_at": "2021-08-11T13:47:27.000000Z", "updated_at": "2021-08-11T13:54:19.000000Z", "test_mode": false }, "relationships": { "store": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/store", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/store" } }, "customer": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/customer", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/customer" } }, "order": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order" } }, "order-item": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order-item", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order-item" } }, "product": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/product", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/product" } }, "variant": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/variant", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/variant" } }, "subscription-items": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-items", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-items" } }, "subscription-invoices": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-invoices", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-invoices" } } }, "links": { "self": "https://api.lemonsqueezy.com/v1/subscriptions/1" } } }

List all subscriptions

Returns a paginated list of subscriptions.

Parameters


store_id

Only return subscriptions belonging to the store with this ID.


order_id

Only return subscriptions belonging to the order with this ID.


order_item_id

Only return subscriptions belonging to the order item with this ID.


product_id

Only return subscriptions belonging to the product with this ID.


variant_id

Only return subscriptions belonging to the variant with this ID.


user_email

Only return subscriptions where the user_email field is equal to this email address.


status

Only return subscriptions with this status.

GET /v1/subscriptions

curl "https://api.lemonsqueezy.com/v1/subscriptions" -H 'Accept: application/vnd.api+json' -H 'Content-Type: application/vnd.api+json' -H 'Authorization: Bearer {api_key}'
curl "https://api.lemonsqueezy.com/v1/subscriptions?filter[product_id]=19" -H 'Accept: application/vnd.api+json' -H 'Content-Type: application/vnd.api+json' -H 'Authorization: Bearer {api_key}'

Returns

Returns a paginated list of subscription objects ordered by created_at (descending).

Response

{ "meta": { "page": { "currentPage": 1, "from": 1, "lastPage": 1, "perPage": 10, "to": 10, "total": 10 } }, "jsonapi": { "version": "1.0" }, "links": { "first": "https://api.lemonsqueezy.com/v1/subscriptions?page%5Bnumber%5D=1&page%5Bsize%5D=10&sort=-createdAt", "last": "https://api.lemonsqueezy.com/v1/subscriptions?page%5Bnumber%5D=1&page%5Bsize%5D=10&sort=-createdAt", }, "data": [ { "type": "subscriptions", "id": "1", "attributes": { "store_id": 1, "customer_id": 1, "order_id": 1, "order_item_id": 1, "product_id": 1, "variant_id": 1, "product_name": "Example Product", "variant_name": "Example Variant", "user_name": "Darlene Daugherty", "user_email": "[email protected]", "status": "active", "status_formatted": "Active", "pause": null, "cancelled": false, "trial_ends_at": null, "billing_anchor": 12, "first_subscription_item": { "id": 1, "subscription_id": 1, "price_id": 1, "quantity": 5, "created_at": "2021-08-11T13:47:28.000000Z", "updated_at": "2021-08-11T13:47:28.000000Z" }, "urls": { "update_payment_method": "https://my-store.lemonsqueezy.com/subscription/1/payment-details?expires=1666869343&signature=9985e3bf9007840aeb3951412be475abc17439c449c1af3e56e08e45e1345413", "customer_portal": "https://my-store.lemonsqueezy.com/billing?expires=1666869343&signature=82ae290ceac8edd4190c82825dd73a8743346d894a8ddbc4898b97eb96d105a5" }, "renews_at": "2022-11-12T00:00:00.000000Z", "ends_at": null, "created_at": "2021-08-11T13:47:27.000000Z", "updated_at": "2021-08-11T13:54:19.000000Z", "test_mode": false }, "relationships": { "store": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/store", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/store" } }, "customer": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/customer", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/customer" } }, "order": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order" } }, "order-item": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order-item", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order-item" } }, "product": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/product", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/product" } }, "variant": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/variant", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/variant" } }, "subscription-items": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-items", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-items" } }, "subscription-invoices": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-invoices", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-invoices" } } }, "links": { "self": "https://api.lemonsqueezy.com/v1/subscriptions/1" } }, {...}, {...}, ] }

Cancel a Subscription

Cancel an active subscription

DELETE /v1/subscriptions/{id}

curl -X "DELETE" "https://api.lemonsqueezy.com/v1/subscriptions/{id}" -H 'Accept: application/vnd.api+json' -H 'Content-Type: application/vnd.api+json' -H 'Authorization: Bearer {api_key}'

Returns

Returns the Subscription object in a cancelled state.

Response

{ "jsonapi": { "version": "1.0" }, "links": { "self": "https://api.lemonsqueezy.com/v1/subscriptions/1" }, "data": { "type": "subscriptions", "id": "1", "attributes": { "store_id": 1, "customer_id": 1, "order_id": 1, "order_item_id": 1, "product_id": 1, "variant_id": 1, "product_name": "Example Product", "variant_name": "Example Variant", "user_name": "Darlene Daugherty", "user_email": "[email protected]", "status": "cancelled", "status_formatted": "Cancelled", "pause": null, "cancelled": true, "trial_ends_at": null, "billing_anchor": 12, "first_subscription_item": { "id": 1, "subscription_id": 1, "price_id": 1, "quantity": 5, "created_at": "2021-08-11T13:47:28.000000Z", "updated_at": "2021-08-11T13:47:28.000000Z" }, "urls": { "update_payment_method": "https://my-store.lemonsqueezy.com/subscription/1/payment-details?expires=1666869343&signature=9985e3bf9007840aeb3951412be475abc17439c449c1af3e56e08e45e1345413", "customer_portal": "https://my-store.lemonsqueezy.com/billing?expires=1666869343&signature=82ae290ceac8edd4190c82825dd73a8743346d894a8ddbc4898b97eb96d105a5" }, "renews_at": "2022-11-12T00:00:00.000000Z", "ends_at": "2022-11-12T00:00:00.000000Z", "created_at": "2021-08-11T13:47:27.000000Z", "updated_at": "2021-08-11T13:54:19.000000Z", "test_mode": false }, "relationships": { "store": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/store", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/store" } }, "customer": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/customer", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/customer" } }, "order": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order" } }, "order-item": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/order-item", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/order-item" } }, "product": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/product", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/product" } }, "variant": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/variant", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/variant" } }, "subscription-items": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-items", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-items" } }, "subscription-invoices": { "links": { "related": "https://api.lemonsqueezy.com/v1/subscriptions/1/subscription-invoices", "self": "https://api.lemonsqueezy.com/v1/subscriptions/1/relationships/subscription-invoices" } } }, "links": { "self": "https://api.lemonsqueezy.com/v1/subscriptions/1" } } }