REST API
GrowPanel provides a REST API for programmatic access to your subscription data and reports.
Base URL: https://api.growpanel.io
What you can do
| Use case | Endpoints |
|---|---|
| Pull metrics | Fetch MRR, ARR, churn, cohorts, and other reports |
| Build dashboards | Get summary metrics for custom dashboard widgets |
| Export data | Retrieve customer lists and transaction history |
| Push data | Import customers, plans, and invoices from custom billing systems |
| Automate workflows | Trigger actions based on subscription events |
Getting started
- Authentication - Obtain and use API keys
- API Reference - Complete endpoint documentation
- Error codes - Understanding API responses
- Rate limiting - Request limits and best practices
Quick example
Fetch your current MRR:
curl https://api.growpanel.io/v1/reports/summary \
-H "Authorization: Bearer YOUR_API_KEY"Response:
{
"summary": {
"mrr_current": 125000,
"arr_current": 1500000,
"subscribers_current": 250,
"arpa_current": 500
}
}Related
- Building integrations - How to connect custom billing systems
- Custom API data source - Step-by-step setup guide