Documentation
Introduction
Authentication
Core Banking
Webhooks
API Reference
Accounts
Transfers
Cards
Build the next generation of financial products with our robust and secure API infrastructure.
// Example: Initiating a Transfer
const response = await fetch('https://api.rise.com/v1/transfers', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 5000,
currency: 'USD',
destination_account: 'acc_123456789',
description: 'Invoice #8821 payment'
})
});
const data = await response.json();
console.log(data);
Python examples coming soon...
Go examples coming soon...
Welcome to the Rise Financial API documentation. Our platform provides a comprehensive suite of APIs for building modern financial applications.
All API requests must be authenticated using Bearer tokens. You can obtain your API keys from the developer dashboard.
Access real-time balance checks, transaction history, and account management endpoints.
Subscribe to real-time events such as payment status updates, account alerts, and fraud notifications.