Billing
Subscriptions
Manage user and team subscriptions. List plans, read subscription status, and open the Stripe billing portal.
Plans & tiers
List available subscription plans
Subscription status
Read current plan and period
Billing portal
Stripe portal for payment methods & invoices
List Plans
Request
HTTP
http
GET https://api.leadron.dev/v1/subscriptions/plans
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
X-Tenant-Id: acme-corpResponse200OK
200 Response
json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"success": true,
"status": 200,
"message": "Plans",
"data": [
{
"tier": "free",
"name": "Free",
"description": "Free tier with limited features",
"priceId": null,
"order": 0
},
{
"tier": "pro",
"name": "Pro",
"description": "For power users",
"priceId": "price_2Def...",
"order": 2
}
],
"meta": {
"timestamp": "2026-02-08T14:30:00.000Z",
"version": "v1"
}
}