#NESH
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
you're correct, if you want to get all of the prices for a certain product you can use https://stripe.com/docs/api/prices/list#list_prices-product
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
so, if I have to make a table with columns let' say: product name, description and number of prices, do you suggest to call api to get let's say first 10 products (if I have pagination) and then for each of them call the above request to retireve the prices of the product. Or - call api to get products and one to retrieve all prices at once - and map them in my system by ids ?