npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pipedream/stripe

v0.8.1

Published

Pipedream Stripe Components

Downloads

395

Readme

Overview

The Stripe API is a powerful tool for managing online payments, subscriptions, and invoices. With Pipedream, you can leverage this API to automate payment processing, monitor transactions, and sync billing data with other services. Pipedream's no-code platform allows for quick integration and creation of serverless workflows that react to Stripe events in real-time. For instance, you might automatically update customer records, send personalized emails after successful payments, or escalate failed transactions to your support team.

Getting Started

To connect your Stripe account to Pipedream, you'll need to generate a new Stripe API key and save it in Pipedream.

  1. Open the Stripe API keys dashboard

  2. Create a new Restricted Key

  3. Connect your Restricted API key

Once your Restricted API key is created, copy and paste it into Pipedream, and click Save

That's it, now you're able to use your Stripe API key within your Pipedream workflows with no-code actions or with Node.js/Python.

Example Use Cases

  • Customer Subscription Lifecycle Management: Create a workflow that triggers when a new customer subscribes to a service. The workflow can update a CRM like Salesforce with the new subscription details, send a welcome email via SendGrid, and create a task in Asana for the onboarding team.

  • Real-Time Fraud Alerting System: Set up a Pipedream workflow that listens for Stripe events indicating possible fraudulent activity, such as multiple declined payments. When detected, the workflow can immediately send alerts through Slack to your risk management team and log the incident in a Google Sheet for review.

  • Monthly Financial Reporting: Develop a scheduled workflow that runs at the end of each month. It can fetch transaction data from Stripe, aggregate sales and refunds, calculate net revenue, and then compile and send a report to stakeholders via email or post it to a private report dashboard like Tableau.

Troubleshooting

Stripe's API uses standard HTTP status codes to describe errors.

200 - OK

The request was received and everything worked as expected.

400 - Bad Request

The request is missing data, or has malformed data. Double check that your payload has the required arguments and it's properly formatted.

401 - Unauthorized

The request isn't authorized to perform the action. Double check that the restricted key you created for Pipedream has access to the resource you're attempting to use.

You can also edit exisiting keys within your Stripe API key dashboard, which is more convienent than creating a new keys.

404 - Not found

The resource isn't available. This usually means that the ID to the resource like the customer, subscription or transaction, etc. is incorrect, or is missing from the URL.

409 - Conflict

This request conflicts with another. This usually is due to the same idempotency key being used on another request. You may need to reduce the concurrency and throttle the workflow to a single worker to prevent race conditions.

429 - Rate limit reached

You've reached the API rate limit, you'll need to reduce how frequently you're sending Stripe API requests with that key. Stripe allows 100 read requests and 100 write requests per second.

5xx - Server error

Something went wrong on Stripe's end. Check the Stripe status page for more details.