List Subscription Plans
GET
/api/public/modules/plans
Get all available subscription plans with included modules and pricing. No authentication required.
Authorizations
ApiKeyAuth
API key for authentication. Get your API key from the dashboard.
Type
API Key (header: X-Api-Key)
Responses
List of all subscription plans
application/json
JSON
{
"data": [
{
"id": "string",
"name": "string",
"description": "string",
"modules": [
"string"
],
"discountPercentage": 0,
"priceCents": 0,
"fullPriceCents": 0
}
]
}