#mlo300
1 messages · Page 1 of 1 (latest)
Hello 👋
Do you mean via the dashboard or the API?
We have a list all products API endpoint that should return all the products on a Stripe account
https://stripe.com/docs/api/products/list
You can pass in active parameter to filter only active products in the response
https://stripe.com/docs/api/products/list#list_products-active
Perfect while an api that tells me how many customers there are in the account also that doesn't give me customer data however it tells me for example there are 1200 customers?
Unfortunately, no. The endpoint doesn't return a total count per se. It would return a paginated list of Customer objects
Ah...