Can any body tell how to filter out Subscription from a particular price id. Any kind of API is present then please share here. (preferred Node.js)
In node.js, you can list subscriptions that contain a specific price ID using the subscription.list() method and passing the price parameter, like this:
const subscriptions = await stripe.subscriptions.list({
price: "{{PRICE_ID}}",
});