Skip to content
For LLMsView as Markdown·

Stripe

Accept payments, manage subscriptions, and handle payouts with the Stripe API.

DetailValue
CategoryPayments
Base URLhttps://api.stripe.com/
AuthenticationBearer Token
Endpoints8
Connector keystripe

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 — the full list is below.

Available endpoints

EndpointSummary
POST /chargesCreate a new charge
GET /charges/{charge_id}Retrieve a charge by ID
POST /payment_intentsCreate a payment intent
GET /customersList all customers
POST /customersCreate a new customer
POST /refundsCreate a refund
GET /invoicesList all invoices
POST /subscriptionsCreate a subscription

Each endpoint is documented in full below. Use the outline on the right to jump to one.

POST /charges

Create a new charge

DetailValue
Operation IDpayments.createCharge
MethodPOST
Path/charges

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.createCharge.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

GET /charges/{charge_id}

Retrieve a charge by ID

DetailValue
Operation IDpayments.getCharge
MethodGET
Path/charges/{charge_id}

Parameters

NameLocationTypeRequired
charge_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.getCharge.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

POST /payment_intents

Create a payment intent

DetailValue
Operation IDpayments.createPaymentIntent
MethodPOST
Path/payment_intents

Parameters

No parameters.

Request Body

FieldType
amountinteger
currencystring
payment_method_typesarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.createPaymentIntent.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

GET /customers

List all customers

DetailValue
Operation IDpayments.listCustomers
MethodGET
Path/customers

Parameters

NameLocationTypeRequired
limitqueryintegerNo
starting_afterquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.listCustomers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

POST /customers

Create a new customer

DetailValue
Operation IDpayments.createCustomer
MethodPOST
Path/customers

Parameters

No parameters.

Request Body

FieldType
emailstring
namestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.createCustomer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

POST /refunds

Create a refund

DetailValue
Operation IDpayments.createRefund
MethodPOST
Path/refunds

Parameters

No parameters.

Request Body

FieldType
chargestring
amountinteger

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.createRefund.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

GET /invoices

List all invoices

DetailValue
Operation IDpayments.listInvoices
MethodGET
Path/invoices

Parameters

NameLocationTypeRequired
customerquerystringNo
statusquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.listInvoices.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.

POST /subscriptions

Create a subscription

DetailValue
Operation IDpayments.createSubscription
MethodPOST
Path/subscriptions

Parameters

No parameters.

Request Body

FieldType
customerstring
itemsarray

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Stripe connection from the Connection dropdown.
  3. In the Operation dropdown, select payments.createSubscription.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Stripe API reference.