What You Can Do
Internal Tools
Build internal tools and dashboards to manage Chimoney operations.
REST API Integration
Use Retool's REST API resource to connect to Chimoney.
Custom UI
Build custom UIs with Retool's drag-and-drop builder.
Example Workflows
Wallet Management Dashboard
Build a dashboard to view and manage agent wallets.
Trigger: User Action
→Action: Display Wallet Data
How to Get Started
1
Create Retool App
Create a new app in Retool.
2
Add REST API Resource
Add a REST API resource and configure it for Chimoney API.
3
Add API Key
Add your Chimoney API key to the resource.
4
Build UI
Use Retool's components to build your wallet management UI.
API Integration (Alternative)
If you prefer direct API integration instead of Retool, 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: 'RetoolAgent',
dailyLimit: 100,
currency: 'USD'
})
});
const wallet = await response.json();
console.log('Agent wallet created:', wallet);