Available now

33 things your agent can do in Stripe

Stripe offers online payment infrastructure, fraud prevention, and APIs enabling businesses to accept and manage payments globally

Commerce & Marketing40 triggersAn API key from your account

Every action, grouped by what it does

You do not pick these by hand. Describe what the agent should do and Squidgy grants the matching ones — an agent told to draft replies gets the drafting action and not the sending one.

Read

20
  • List Charges

    Retrieves a list of stripe charges with filtering and pagination; use valid cursor ids from previous responses for pagination, and note that charges are typically returned in reverse chronological or…

    STRIPE_LIST_CHARGES
  • List Stripe coupons

    Retrieves a list of discount coupons from a stripe account, supporting pagination via `limit`, `starting after`, and `ending before`.

    STRIPE_LIST_COUPONS
  • List customers

    Retrieves a list of stripe customers, with options to filter by email, creation date, or test clock, and support for pagination.

    STRIPE_LIST_CUSTOMERS
  • List customer payment methods

    Retrieves a list of payment methods for a given customer, supporting type filtering and pagination.

    STRIPE_LIST_CUSTOMER_PAYMENT_METHODS
  • List Invoices

    Retrieves a list of stripe invoices, filterable by various criteria and paginatable using invoice id cursors obtained from previous responses.

    STRIPE_LIST_INVOICES
  • List payment intents

    Retrieves a list of stripe paymentintents, optionally filtered and paginated using paymentintent ids as cursors.

    STRIPE_LIST_PAYMENT_INTENTS
  • List payment links

    Retrieves a list of payment links from stripe, sorted by creation date in descending order by default.

    STRIPE_LIST_PAYMENT_LINKS
  • List products

    Retrieves a list of stripe products, with optional filtering and pagination; `starting after`/`ending before` cursors must be valid product ids from a previous response.

    STRIPE_LIST_PRODUCTS
  • List Refunds

    Lists stripe refunds, sorted by creation date descending (newest first), with optional filtering by charge or payment intent and pagination support.

    STRIPE_LIST_REFUNDS
  • List Stripe shipping rates

    Retrieves a list of stripe shipping rates, filterable by active status, creation date, and currency; useful for managing or displaying shipping options.

    STRIPE_LIST_SHIPPING_RATES
  • List subscriptions

    Retrieves a list of stripe subscriptions, optionally filtered by various criteria such as customer, price, status, collection method, and date ranges, with support for pagination.

    STRIPE_LIST_SUBSCRIPTIONS
  • List tax codes

    Retrieves a paginated list of globally available, predefined stripe tax codes used for classifying products and services in stripe tax.

    STRIPE_LIST_TAX_CODES
  • List tax rates

    Retrieves a list of tax rates, which are returned sorted by creation date in descending order.

    STRIPE_LIST_TAX_RATES
  • Retrieve Balance

    Retrieves the complete current balance details for the connected stripe account.

    STRIPE_RETRIEVE_BALANCE
  • Retrieve Charge Details

    Retrieves full details for an existing stripe charge using its unique id.

    STRIPE_RETRIEVE_CHARGE
  • Retrieve customer

    Retrieves detailed information for an existing stripe customer using their unique customer id.

    STRIPE_RETRIEVE_CUSTOMER
  • Retrieve payment intent

    Retrieves a paymentintent by its id; `client secret` is required if a publishable api key is used.

    STRIPE_RETRIEVE_PAYMENT_INTENT
  • Retrieve a refund

    Retrieves details for an existing stripe refund using its unique `refund id`.

    STRIPE_RETRIEVE_REFUND
  • Retrieve subscription

    Retrieves detailed information for an existing stripe subscription using its unique id.

    STRIPE_RETRIEVE_SUBSCRIPTION
  • Search Stripe customers

    Retrieves a list of stripe customers matching a search query that adheres to stripe's search query language.

    STRIPE_SEARCH_CUSTOMERS

Create & update

11
  • Create Customer

    Creates a new customer in stripe, required for creating charges or subscriptions; an email is highly recommended for customer communications.

    STRIPE_CREATE_CUSTOMER
  • Create an invoice

    Creates a new draft stripe invoice for a customer; use to revise an existing invoice, bill for a specific subscription (which must belong to the customer), or apply detailed customizations.

    STRIPE_CREATE_INVOICE
  • Create payment intent

    Creates a stripe paymentintent to initiate and process a customer's payment; using `application fee amount` for a connected account requires the `stripe-account` header.

    STRIPE_CREATE_PAYMENT_INTENT
  • Create a price

    Creates a new stripe price for a product, defining its charges (one-time or recurring) and billing scheme; requires either an existing `product` id or `product data`.

    STRIPE_CREATE_PRICE
  • Create product

    Creates a new product in stripe, encoding the request as `application/x-www-form-urlencoded` by flattening nested structures.

    STRIPE_CREATE_PRODUCT
  • Create Refund

    Creates a full or partial refund in stripe, targeting either a specific charge id or a payment intent id.

    STRIPE_CREATE_REFUND
  • Create subscription

    Creates a new, highly configurable subscription for an existing stripe customer, supporting multiple items, trials, discounts, and various billing/payment options.

    STRIPE_CREATE_SUBSCRIPTION
  • Delete customer

    Permanently deletes an existing stripe customer; this irreversible action also cancels their active subscriptions and removes all associated data.

    STRIPE_DELETE_CUSTOMER
  • Update Customer

    Updates an existing stripe customer, identified by customer id, with only the provided details; unspecified fields remain unchanged.

    STRIPE_UPDATE_CUSTOMER
  • Update Payment Intent

    Updates a stripe paymentintent with new values for specified parameters; note that if `currency` is updated, `amount` might also be required, and certain updates (e.g., to `payment method`) can neces…

    STRIPE_UPDATE_PAYMENT_INTENT
  • Update Subscription

    Updates an existing, non-canceled stripe subscription by its id, ensuring all referenced entity ids (e.g., prices, coupons) are valid and automatic tax liability is correctly specified if enabled.

    STRIPE_UPDATE_SUBSCRIPTION

Manage

2
  • Cancel subscription

    Cancels a customer's active stripe subscription at the end of the current billing period, with options to invoice immediately for metered usage and prorate charges for unused time.

    STRIPE_CANCEL_SUBSCRIPTION
  • Confirm payment intent

    Confirms a stripe paymentintent to finalize a payment; a `return url` is necessary if the payment method requires customer redirection.

    STRIPE_CONFIRM_PAYMENT_INTENT

About connecting Stripe

What can an AI agent do in Stripe?

33 distinct actions, listed in full on this page — 20 to read, 11 to create & update, 2 to manage. An agent gets the ones that match what you described it doing, not all of them at once.

How do I connect Stripe?

Once, in Settings → Integrations. An API key from your account. The connection is yours, shared by every agent you build — you are not re-authorising per agent, and the agent never sees your credentials.

Can an agent react to something happening in Stripe?

Yes — Stripe exposes 40 triggers, so an agent can start work when something changes rather than waiting to be asked.

The Stripe integration guide · All 58 connectable apps · The agent builder

Chat with Squidgy