Integrate our powerful payment infrastructure into your platform. One API, global reach, developer-friendly tools, and enterprise-grade reliability.
Request API DocumentationOne integration point gives you access to 150+ countries and 50+ currencies. No need to manage multiple payment providers or banking relationships.
Comprehensive API documentation with interactive examples. Test your integration in our sandbox environment before going live.
Built for enterprise scale with 99.9% uptime SLA. Auto-scaling infrastructure handles traffic spikes and maintains consistent performance.
Add cross-border payment capabilities to your app or platform. Let your users send money globally with just a few API calls.
Streamline your supply chain payments. Automatically pay suppliers in their preferred currency and settlement method.
Enable seamless currency conversion for your customers. Real-time rates, no FX fees, and instant settlement.
Create your developer account and get API credentials.
Test all API endpoints in our sandbox environment.
Build your integration using our documentation.
Switch to production and start processing real payments.
// Create a payment request
const paymentRequest = {
amount: 1000,
currency: "USD",
recipient: {
name: "John Doe",
accountNumber: "123456789",
bankCode: "001",
country: "NG"
},
sender: {
name: "Your Customer",
email: "customer@example.com"
}
};
// Send via KrosRemit API
fetch('https://api.krosremit.com/v1/payments', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify(paymentRequest)
})
.then(response => response.json())
.then(data => {
console.log('Payment created:', data.paymentId);
});
Get access to our comprehensive API documentation, sandbox environment, and dedicated developer support.
Request API Documentation