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 caseEndpoints
Pull metricsFetch MRR, ARR, churn, cohorts, and other reports
Build dashboardsGet summary metrics for custom dashboard widgets
Export dataRetrieve customer lists and transaction history
Push dataImport customers, plans, and invoices from custom billing systems
Automate workflowsTrigger actions based on subscription events

Getting started

  1. Authentication - Obtain and use API keys
  2. API Reference - Complete endpoint documentation
  3. Error codes - Understanding API responses
  4. 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
}
}