Skip to main content
GET
/
api
/
v1
/
billing
/
subscriptions
List Subscriptions
curl --request GET \
  --url https://api.launchmystore.io/api/v1/billing/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": {
    "subscriptions": [
      {
        "subscriptionId": "7f04abcb-5370-4e61-9857-5d477313a5e9",
        "planType": "Trial",
        "planDuration": null,
        "amount": "0.00",
        "currency": "INR",
        "status": "expired",
        "subscriptionEndingDate": "2026-02-15T18:19:04.275Z",
        "subscriptionCancelationDate": null,
        "paymentGateway": "Stripe",
        "invoiceId": null,
        "createdAt": "2026-02-08T18:19:04.276Z",
        "updatedAt": "2026-02-25T20:01:42.881Z"
      }
    ],
    "count": 1
  },
  "pagination": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Lists every subscription row for the merchant — current and historical — ordered by createdAt descending. Required scope: read_billing

Response

data
object
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": {
    "subscriptions": [
      {
        "subscriptionId": "7f04abcb-5370-4e61-9857-5d477313a5e9",
        "planType": "Trial",
        "planDuration": null,
        "amount": "0.00",
        "currency": "INR",
        "status": "expired",
        "subscriptionEndingDate": "2026-02-15T18:19:04.275Z",
        "subscriptionCancelationDate": null,
        "paymentGateway": "Stripe",
        "invoiceId": null,
        "createdAt": "2026-02-08T18:19:04.276Z",
        "updatedAt": "2026-02-25T20:01:42.881Z"
      }
    ],
    "count": 1
  },
  "pagination": null
}