Stripe ​
Accept payments, manage subscriptions, and handle payouts with the Stripe API.
| Detail | Value |
|---|---|
| Category | Payments |
| Base URL | https://api.stripe.com/ |
| Authentication | Bearer Token |
| Endpoints | 8 |
| Connector key | stripe |
Using Stripe in a workflow ​
- Go to Connections and click New Connection.
- Pick Stripe from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| POST /charges | Create a new charge |
| GET /charges/{charge_id} | Retrieve a charge by ID |
| POST /payment_intents | Create a payment intent |
| GET /customers | List all customers |
| POST /customers | Create a new customer |
| POST /refunds | Create a refund |
| GET /invoices | List all invoices |
| POST /subscriptions | Create a subscription |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.