The open standard that enables AI agents to discover, evaluate, and purchase products on behalf of users. Join the future of commerce where AI agents can shop for you.
AI agent finds your product based on user intent
User selects product and AI agent manages cart
AI agent facilitates secure payment process
Order flows back to your store for processing
AI agent finds your product based on user intent
User selects product and AI agent manages cart
AI agent facilitates secure payment process
Order flows back to your store for processing
Makes purchase through AI agent
Facilitates the entire process
Receives and fulfills the order
Ready to enable this checkout flow for your store?
Highest level of payment security compliance
Security, availability, and confidentiality controls
Information security management system
European data protection regulation compliance
All data encrypted in transit and at rest using AES-256 encryption
GXO never stores your customers' payment information
Advanced fraud detection and prevention systems
Comprehensive logging and monitoring of all activities
Ready to secure your agentic commerce with enterprise-grade security?
GXO handles all the technical complexity. Here's what happens when you connect your store.
One-click integration with your existing platform
# Install GXO SDK
npm install @gxo/sdk
# Initialize with your store credentials
import { GXOClient } from '@gxo/sdk';
const gxo = new GXOClient({
apiKey: 'your-api-key',
storeId: 'your-store-id'
});GXO provides SDKs for all major platforms. Simply install the package and initialize with your API credentials.
Set up automatic product synchronization
// Configure product feed settings
await gxo.configureFeed({
syncInterval: 'realtime', // or 'hourly', 'daily'
includeVariants: true,
imageOptimization: true,
seoOptimization: true
});
// Start synchronization
await gxo.startSync();Configure how often your products sync and what data to include. GXO handles the rest automatically.
Handle real-time events from AI agents
// Webhook endpoint for order events
app.post('/webhooks/gxo', async (req, res) => {
const { event, data } = req.body;
switch (event) {
case 'order.created':
await handleNewOrder(data);
break;
case 'payment.completed':
await processPayment(data);
break;
case 'inventory.updated':
await updateInventory(data);
break;
}
res.status(200).send('OK');
});Handle events from AI agents in real-time. GXO sends webhooks for orders, payments, and inventory updates.
Verify everything works correctly
// Test your integration
const testResult = await gxo.testIntegration({
testProduct: 'your-test-product-id',
testAgent: 'chatgpt'
});
console.log('Integration Status:', testResult.status);
console.log('Test Orders:', testResult.orders);
console.log('Performance:', testResult.metrics);GXO provides comprehensive testing tools to verify your integration works correctly before going live.
Ready to see GXO's implementation in action?
Join thousands of merchants and AI agents already using ACP to revolutionize their commerce experience. Start your journey today.