Skip to main content
GET
/
api
/
v1
/
billing
Get Billing Summary
curl --request GET \
  --url https://api.launchmystore.io/api/v1/billing \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": {
    "billing": {
      "storeId": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
      "plan": {
        "type": "Trial",
        "duration": null,
        "expiresAt": "2026-02-15T18:19:04.275Z",
        "status": "expired"
      },
      "credits": { "nova": 0, "wallet": "0.00" },
      "activeSubscription": null
    }
  },
  "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.

Returns the current plan tier, plan duration, plan expiry, status, Nova/wallet credit balance, and the active subscription (if any). Used by app dashboards to surface plan tier and remaining trial. Required scope: read_billing

Response

data
object
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": {
    "billing": {
      "storeId": "7374cb9e-9f9c-4041-87de-379aea6ed21a",
      "plan": {
        "type": "Trial",
        "duration": null,
        "expiresAt": "2026-02-15T18:19:04.275Z",
        "status": "expired"
      },
      "credits": { "nova": 0, "wallet": "0.00" },
      "activeSubscription": null
    }
  },
  "pagination": null
}