--- title: 'Stripe' description: 'Accept payments, manage subscriptions, and handle payouts with the Stripe API.' --- # 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 1. Go to **Connections** and click **New Connection**. 2. Pick **Stripe** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [POST /charges](./post_charges_payments_createcharge) | Create a new charge | | [GET /charges/{charge_id}](./get_charges_charge_id_payments_getcharge) | Retrieve a charge by ID | | [POST /payment_intents](./post_payment_intents_payments_createpaymentintent) | Create a payment intent | | [GET /customers](./get_customers_payments_listcustomers) | List all customers | | [POST /customers](./post_customers_payments_createcustomer) | Create a new customer | | [POST /refunds](./post_refunds_payments_createrefund) | Create a refund | | [GET /invoices](./get_invoices_payments_listinvoices) | List all invoices | | [POST /subscriptions](./post_subscriptions_payments_createsubscription) | Create a subscription | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.