LoanFi
The DeFi loan aggregator for everyone
Need a Loan?
Compare rates across Aave, Compound, and more. Find the best terms for your crypto loan in seconds.
- Compare rates from multiple pools
- Choose your term (3-12 months)
- Borrow with one transaction
Building a dApp?
Add "Pay with LoanFi" to your checkout. Your users borrow, you get paid instantly.
- One-line widget integration
- Instant settlement to your wallet
- No lending risk - we aggregate pools
How It Works
Like Kayak for flights, but for DeFi loans. We aggregate the best rates so you don't have to.
1
Enter Your Needs
Tell us how much you want to borrow and what collateral you have.
2
Compare Options
See rates from Aave, Compound, and more. Pick your term length.
3
Borrow Instantly
One transaction: deposit collateral, borrow funds, done.
Aggregating rates from
Aave
Compound
Spark
Morpho
More pools coming soon
For Developers
Add "Buy Now, Pay Later" to your dApp in minutes
checkout.html
<!-- Add LoanFi widget to your checkout -->
<script src="https://loanfi.xyz/widget.js"></script>
<div
id="loanfi-widget"
data-merchant-id="merch_abc123"
data-amount="500"
data-token="USDC"
data-recipient="0x1234...abcd"
></div>
<script>
LoanFi.init({
onSuccess: (txHash) => {
console.log('Paid via loan:', txHash);
// Fulfill the order
},
onError: (error) => {
console.error('Payment failed:', error);
}
});
</script>