What You Can Do
Create Agent Wallets
Automatically create agent wallets when triggers fire in your Zapier workflows.
Send Payments
Trigger payments from agent wallets based on events in other apps.
Policy Controls
Set spending limits and approval workflows directly from Zapier.
Example Workflows
Auto-Create Agent Wallet on New User Signup
When a new user signs up in your app, automatically create an agent wallet for them.
Send Payment on Form Submission
When someone submits a form, automatically send a payment from an agent wallet.
Update Policy Limits Based on Events
Adjust agent wallet spending limits based on events in your CRM or database.
How to Get Started
Install Chimoney on Zapier
Search for "Chimoney" in the Zapier app directory and click "Add to Zapier".
Connect Your Account
Authenticate with your Chimoney API key. You can find your API key in your Chimoney dashboard. Chimoney dashboard.
Create Your First Zap
Choose a trigger app and connect it to a Chimoney action. Test your Zap and turn it on!
API Integration (Alternative)
If you prefer direct API integration instead of Zapier, here's a quick example:
// Create agent wallet via API
const response = await fetch('https://api.chimoney.io/v0.2/wallets', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'ZapierAgent',
dailyLimit: 100,
currency: 'USD'
})
});
const wallet = await response.json();
console.log('Agent wallet created:', wallet);