Stripe

Stripe

Complete payment automation with Stripe

With emma's Stripe integration, you can manage customers, payments, invoices, subscriptions, and refunds. Automate your entire payment workflow with Stripe's powerful API.

Features

Stripe_Operator supports the following 17 tools:

CategoryTools
Balance1
Tool NameDescription
stripe_get_balanceGet account balance
Customers5
Tool NameDescription
stripe_get_customerGet customer details
stripe_list_customersList customers
stripe_search_customersSearch customers
stripe_create_customerCreate a new customer
stripe_update_customerUpdate an existing customer
Payment Intents2
Tool NameDescription
stripe_get_payment_intentGet payment intent details
stripe_list_payment_intentsList payment intents
Invoices4
Tool NameDescription
stripe_get_invoiceGet invoice details
stripe_list_invoicesList invoices
stripe_create_invoiceCreate a new invoice
stripe_send_invoiceFinalize and send an invoice
Subscriptions2
Tool NameDescription
stripe_get_subscriptionGet subscription details
stripe_list_subscriptionsList subscriptions
Products & Prices2
Tool NameDescription
stripe_list_productsList products
stripe_list_pricesList prices
Refunds1
Tool NameDescription
stripe_create_refundCreate a refund

Main Parameters

ParameterDescription
customer_idCustomer ID
payment_intent_idPayment Intent ID
invoice_idInvoice ID
subscription_idSubscription ID
querySearch query (Stripe Search Query Language)

Prerequisites

  • emma account
  • Stripe account
  • Stripe secret key

Setup

1. Install the package

npm install @duzzle/stripe-integration

2. Initialize

import { DuzzleStripe } from '@duzzle/stripe-integration';

const stripe = new DuzzleStripe({
  apiKey: process.env.DUZZLE_API_KEY,
  stripeSecretKey: process.env.STRIPE_SECRET_KEY
});

3. Create Customer

// Create a new customer
const customer = await stripe.createCustomer({
  email: 'customer@example.com',
  name: 'John Doe',
  metadata: {
    plan: 'pro'
  }
});

console.log('Customer ID:', customer.id);

© 2026 Duzzle Inc. All rights reserved.