Chimoney + Zapier Integration

Connect Chimoney agent wallets to Zapier. Automate payments, create wallets, and manage policy controls through your favorite workflows.

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.

Trigger: New User in Your App
Action: Create Agent Wallet in Chimoney

Send Payment on Form Submission

When someone submits a form, automatically send a payment from an agent wallet.

Trigger: New Form Submission
Action: Send Payment via Chimoney

Update Policy Limits Based on Events

Adjust agent wallet spending limits based on events in your CRM or database.

Trigger: Event in CRM/Database
Action: Update Policy Limits in Chimoney

How to Get Started

1

Install Chimoney on Zapier

Search for "Chimoney" in the Zapier app directory and click "Add to Zapier".

2

Connect Your Account

Authenticate with your Chimoney API key. You can find your API key in your Chimoney dashboard. Chimoney dashboard.

3

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);