curl --request GET \
--url https://api.hyperline.co/v1/analytics \
--header 'Authorization: Bearer <token>'
{
"revenue_last_30_days": 123,
"churn_30_days": 123,
"churned_revenue_30_days": 123,
"arr": 123,
"mrr": 123,
"pending_arr": 123,
"active_arr": 123,
"arr_in_discounts": 123,
"fixed_arr": 123,
"active_customers": 123,
"arpa": 123
}
Retrieve your pre-computed account’s analytics (ARR, revenues, churn, etc).
curl --request GET \
--url https://api.hyperline.co/v1/analytics \
--header 'Authorization: Bearer <token>'
{
"revenue_last_30_days": 123,
"churn_30_days": 123,
"churned_revenue_30_days": 123,
"arr": 123,
"mrr": 123,
"pending_arr": 123,
"active_arr": 123,
"arr_in_discounts": 123,
"fixed_arr": 123,
"active_customers": 123,
"arpa": 123
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Invoicing Entity ID to filter analytics
"ive_47484fjdhy5"
The response is of type object
.
Was this page helpful?