Chimoney + Bubble Integration

Connect Chimoney agent wallets to Bubble. Build no-code applications with payment and wallet management capabilities.

What You Can Do

No-Code Integration

Integrate Chimoney without writing code using Bubble's API connector.

Workflow Actions

Trigger Chimoney actions from Bubble workflows.

Custom Apps

Build custom applications with payment capabilities.

Example Workflows

Create Wallet on User Signup

When a user signs up, automatically create an agent wallet.

Trigger: User Signup
Action: Create Agent Wallet

How to Get Started

1

Create Bubble App

Create a new app in Bubble.

2

Add API Connector

Add an API connector and configure it for Chimoney API.

3

Add API Key

Add your Chimoney API key to the connector.

4

Build Workflows

Create workflows that call Chimoney API endpoints.

API Integration (Alternative)

If you prefer direct API integration instead of Bubble, 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: 'BubbleAgent',
    dailyLimit: 100,
    currency: 'USD'
  })
});

const wallet = await response.json();
console.log('Agent wallet created:', wallet);