🌐
Interledger Payments Illustration
Placeholder
What It Is
Complete Interledger infrastructure for payments, monetization, and integration
Features
Everything you need to build Interledger experiences
Use Cases
Powering Interledger experiences across industries
Integration
Get started with our Interledger API
JavaScript ExampleView Full Docs →
// Issue an Interledger Payment Pointer
const response = await fetch('https://api.chimoney.io/v0.2/accounts/issue-wallet-address', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-KEY': 'your-api-key'
},
body: JSON.stringify({
userID: 'user123',
ilpUsername: 'chimoney_user123'
})
});
const { url: paymentPointer } = await response.json();
console.log('Payment pointer:', paymentPointer); // $ilp.chimoney.com/chimoney_user123
// Send Interledger Payment
const paymentResponse = await fetch('https://api.chimoney.io/v0.2/payouts/interledger-wallet-address', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-KEY': 'your-api-key'
},
body: JSON.stringify({
interledgerWallets: [{
interledgerWalletAddress: '$ilp.chimoney.com/recipient',
narration: 'Payment description',
currency: 'USD',
amountToDeliver: 10
}],
debitCurrency: 'USD',
userID: 'user123'
})
});Check out our other Products
AI Agent Wallets
Wallet + Passport + Policy Controls
Complete wallet infrastructure for AI agents with built-in policy enforcement. Create agent wallets in 5 minutes via API or chimoney.app. Limits are automatically enforced by the Chimoney API - no manual tracking required. See working examples with LangChain, CrewAI, and custom Python agents.

