#aj-foster
1 messages · Page 1 of 1 (latest)
Hi there
No there is no undocumented way to do this. You basically want to list your Customers using: https://stripe.com/docs/api/customers/list and then if you wanted to filter by amount of Charges you would loop through the list and list all Charges for each Customer using https://stripe.com/docs/api/charges/list#list_charges-customer
You just want to be aware of rate limits when you do this: https://stripe.com/docs/rate-limits
Understood, thank you very much!