Integration Guide
Choose the integration approach that best fits your business and technical requirements.
Shopify: Add Shopping to Your AI Agent
Integration Paths
Path Comparison
| Approach | Best For | Complexity | Time to Launch |
|---|---|---|---|
| Stripe Agent Toolkit | Stripe users, rapid deployment | Low | Days |
| Platform Plugin | Shopify, WooCommerce users | Low | Days |
| Custom API | Full control, unique requirements | Medium | Weeks |
Stripe Agent Toolkit (Recommended)
β‘
The fastest path to ACP integration for businesses already using Stripe.
The Stripe Agent Toolkit provides:
- Pre-built ACP endpoints
- Automatic signature verification
- Built-in payment token handling
- Managed checkout sessions
import Stripe from 'stripe';
import { AgentToolkit } from '@stripe/agent-toolkit';
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY);
const toolkit = new AgentToolkit({ stripe });
// Endpoints automatically configured
app.use('/acp', toolkit.routes());Platform Integration
Shopify
- Native app available in App Store
- Automatic product sync
- Built-in order management
WooCommerce
- Plugin for WordPress
- Product catalog integration
- Order webhook handling
BigCommerce
- App marketplace integration
- API connector available
Custom Implementation
For businesses needing full control:
- Implement the Product Feed Spec
- Build the Agentic Checkout API
- Handle Delegated Payments
Requirements
- HTTPS endpoint
- JSON API capability
- Signature verification
- Session management
Architecture Overview
βββββββββββββββ ββββββββββββββββ βββββββββββββββ
β AI Agent βββββΆβ Your API βββββΆβ Stripe β
β (ChatGPT) ββββββ (ACP) ββββββ (SPT) β
βββββββββββββββ ββββββββββββββββ βββββββββββββββ
β β β
β 1. Create β 3. Create β
β Session β Payment β
β β β
β 2. Provide β 4. Charge β
β SPT β Token β
βΌ βΌ βΌNext Steps
Choose your path: