#raam
1 messages · Page 1 of 1 (latest)
Hello
How to get Subscriber Lifetime Value in Stripe?
I believe there should be a chart provided on your Dashboard in your Billing Reports section for this
I want to get this data through an API call
We don't have a specific manner to provide if you are attempting to calculate this yourself. You would mostly list Subscriptions
Yep so then you list Invoices per Customer using: https://stripe.com/docs/api/invoices/list#list_invoices-customer
And you calculate based on those invoices that have been paid
Thank you
Sure!
To get Gross Volume in Stripe @viscid lynx
Oh not per-customer?
To get Daily revenue inStripe?
both @gentle totem
Are you using Invoices for your integration?
Or taking any payments without Invoices?
Give solutions for both conditions
List charges and paginate
https://stripe.com/docs/api/pagination has info on pagination
You will need to handle the time periods yourself, but you can easily do that using the created property when you list
This would also be a fine way to handle the above that you mentioned with lifetime volume per Customer
You don't have to list Invoices unless you want to.... you really can just rely on Charges if you are just interested in volume amounts