FruxonDocs

Stripe

Stripe integration for payments, customers, products, invoices, and subscriptions

The Stripe integration lets your agents manage the full commerce lifecycle — customers, payments, products, prices, invoices, subscriptions, and account balance.

Prerequisites

You need:

  • Stripe Secret API Key — Get it from the Stripe Dashboard (starts with sk_test_ or sk_live_).

Setup

  1. Open your agent in Agent Studio
  2. In the Integrations panel, click Add Integration Config
  3. Select Stripe from the integration list
  4. Give the config a display name (e.g., "Stripe")
  5. Enter your Stripe secret API key
  6. Save the agent revision

Using in Your Agent

  1. In an Agent Step, attach Stripe tools from the tools panel
  2. Tools are referenced as stripe.list_customers, stripe.create_payment_intent, etc.

Available Tools

Customers

ToolDescriptionAction Type
list_customersList customers with optional email filter and paginationReadOnly
get_customerRetrieve a single customer by IDReadOnly
create_customerCreate a new customerReversible
update_customerUpdate an existing customerReversible

Payment Intents

ToolDescriptionAction Type
list_payment_intentsList payment intents with optional customer filterReadOnly
get_payment_intentRetrieve a single payment intent by IDReadOnly
create_payment_intentCreate a new payment intentReversible

Charges

ToolDescriptionAction Type
list_chargesList charges with optional customer/payment intent filterReadOnly
get_chargeRetrieve a single charge by IDReadOnly

Refunds

ToolDescriptionAction Type
list_refundsList refunds with optional charge/payment intent filterReadOnly
get_refundRetrieve a single refund by IDReadOnly
create_refundCreate a refund for a charge or payment intentIrreversible

Products

ToolDescriptionAction Type
list_productsList products with optional active filterReadOnly
get_productRetrieve a single product by IDReadOnly
create_productCreate a new productReversible
update_productUpdate an existing productReversible

Prices

ToolDescriptionAction Type
list_pricesList prices with optional product/type filterReadOnly
get_priceRetrieve a single price by IDReadOnly
create_priceCreate a new price for a productReversible

Invoices

ToolDescriptionAction Type
list_invoicesList invoices with optional customer/status filterReadOnly
get_invoiceRetrieve a single invoice by IDReadOnly
create_invoiceCreate a new draft invoiceReversible
send_invoiceFinalize and send an invoiceIrreversible

Subscriptions

ToolDescriptionAction Type
list_subscriptionsList subscriptions with optional customer/status filterReadOnly
get_subscriptionRetrieve a single subscription by IDReadOnly
create_subscriptionCreate a new subscriptionReversible
update_subscriptionUpdate an existing subscriptionReversible
cancel_subscriptionCancel a subscription immediatelyIrreversible

Balance

ToolDescriptionAction Type
get_balanceRetrieve the current account balance by currencyReadOnly

On this page