Stripe
Automate payments, invoices, and revenue ops
Complete Stripe payment platform integration - manage customers, products, prices, invoices, subscriptions, payment links, refunds, disputes, charges, and webhooks. Essential for payment processing, billing automation, and revenue management.
Look up data, search, list, and analyze
Create new things, update existing ones
Delete records and clean things up
List Customers
readList customers in your Stripe account. Filter by email to find specific customers. Returns customer IDs, names, emails, balances, and metadata. Use this to browse your customer base or look up customers for invoicing.
Get Customer
readRetrieve a single customer by ID. Returns full customer details including payment methods, subscriptions, and invoice history.
List Products
readList products in your catalog. Products represent goods or services you sell. Filter by active status to see only available products.
List Prices
readList prices (pricing options) for products. Prices define how much to charge - one-time or recurring. Filter by product to see all pricing tiers.
List Payment Links
readList all payment links. Returns URLs and their configuration.
List Invoices
readList invoices. Filter by customer or status. Returns invoice amounts, payment status, and hosted invoice URLs.
Get Invoice
readRetrieve a single invoice by ID. Returns full invoice details including line items.
Retrieve Balance
readGet your Stripe account balance. Shows available funds and pending amounts by currency.
List Charges
readList all charges (successful payments). Filter by customer to see their payment history.
Get Charge
readRetrieve a single charge by ID. Returns full payment details including card info and receipt URL.
List Payment Intents
readList payment intents. Payment intents track the payment lifecycle from creation to completion.
List Refunds
readList all refunds. See refund status and amounts.
List Subscriptions
readList subscriptions. Filter by customer or status to find specific subscriptions.
Get Subscription
readRetrieve a subscription by ID. Returns full subscription details including current period and items.
List Coupons
readList all discount coupons. See coupon codes, discounts, and validity.
List Disputes
readList all disputes (chargebacks). Disputes require evidence submission to contest.
List Webhooks
readList webhook endpoints. Webhooks notify your application of Stripe events.
Search Documentation
readSearch Stripe's documentation for integration help, API references, and code examples.
List All Prices
readList all prices with their associated product details expanded. Returns price info alongside product names for easy reference.
Search Products
readSearch products by name or description text. Returns matching products filtered by query string and optional metadata filters.
Get Product With Prices
readGet a product with all its associated prices. Returns full product details along with every price attached to it, including amounts, currencies, and recurring intervals.
Create Customer
writeCreate a new customer in Stripe. Customers can be attached to payments, invoices, and subscriptions for recurring billing.
Update Customer
writeUpdate an existing customer's details. Only provided fields are updated.
Create Product
writeCreate a new product. After creating, add prices to set how much to charge.
Update Product
writeUpdate an existing product. Set active=false to archive a product.
Create Price
writeCreate a price for a product. Use recurring for subscription billing. For metered usage, set recurring.usage_type to 'metered'. Amounts are in smallest currency unit (cents for USD).
Create Payment Link
writeCreate a shareable payment link. Customers can pay by visiting the URL - no code required. Great for quick sales or social media.
Create Invoice
writeCreate a draft invoice for a customer. Add line items, then finalize to send.
Create Invoice Item
writeAdd a line item to a draft invoice. Use an existing price or specify a custom amount.
Finalize Invoice
writeFinalize a draft invoice. This locks the invoice and prepares it for payment. For auto_advance invoices, this also sends it.
Send Invoice
writeSend a finalized invoice to the customer via email. The customer receives a link to pay online.
Void Invoice
writeVoid an open invoice. Use this to cancel an invoice that shouldn't be paid. Voided invoices cannot be unvoided.
Create Refund
writeRefund a payment. Refund the full amount or specify a partial refund. Refunds are processed immediately.
Create Subscription
writeCreate a new subscription for a customer. The customer must have a payment method on file.
Update Subscription
writeUpdate a subscription - change plans, quantities, or billing settings.
Cancel Subscription
writeCancel a subscription. Cancel immediately or at the end of the current billing period.
Create Coupon
writeCreate a discount coupon. Use either percent_off OR amount_off, not both.
Update Dispute
writeSubmit evidence for a dispute. Provide documentation to contest a chargeback.
Create Webhook
writeCreate a webhook endpoint to receive Stripe event notifications. Returns the webhook secret needed for signature verification.
Create Metered Price
writeCreate a metered (usage-based) price for a product. Metered prices charge based on reported usage rather than a fixed per-seat amount. Usage is reported via usage records on the subscription item. Amounts are in smallest currency unit (cents for USD).
Update Price
writeUpdate an existing price in Stripe. Can modify nickname, metadata, active status, lookup key, and tax behavior. Note: unit_amount and currency cannot be changed after creation.
Create Product With Price
writeCreate a product and its default price in a single operation. Useful for quickly setting up new items in your catalog with pricing.
Clone Product
writeClone an existing product with a new name, optionally duplicating all associated prices. Useful for creating product variants or seasonal versions.
Bulk Update Products
writeUpdate multiple products at once. Each update can modify name, description, active status, and metadata independently.
Create Checkout Session
writeCreate a Stripe Checkout Session for a hosted payment page. Supports one-time payments, subscriptions, and setup mode. Returns a URL to redirect the customer to Stripe's hosted checkout.
Delete Customer
deletePermanently delete a customer and cancel their subscriptions. This cannot be undone. Use with caution.
Delete Coupon
deleteDelete a coupon. Existing discounts using this coupon will remain active.
Delete Webhook
deleteDelete a webhook endpoint. It will no longer receive events.
Delete Product
deleteDelete (archive) a product from Stripe. Archived products are no longer available for new purchases but existing subscriptions are unaffected.
Archive Price
deleteArchive (deactivate) a price in Stripe. The price will no longer be available for new purchases but existing subscriptions continue.