Everything you need to integrate ZeroFi's zero-interest financing platform into your systems.
Learn how to authenticate your API requests using OAuth 2.0
Browse all available API endpoints for financing applications
Set up webhooks to receive real-time updates
npm install @zerofi/sdk
pip install zerofi
Maven and Gradle support available
Connect your core banking system with ZeroFi
Embed financing options directly into your sales process
Build a white-label financing application flow
Ask questions and share solutions with other developers
Check API uptime and service status
Reach out to our technical support team
// 1. Install the SDK
npm install @zerofi/sdk
// 2. Initialize the client
import { ZeroFi } from '@zerofi/sdk';
const client = new ZeroFi({
apiKey: process.env.ZEROFI_API_KEY
});
// 3. Create a financing application
const application = await client.applications.create({
customerId: 'cust_123',
vehiclePrice: 25000,
downPayment: 5000,
term: 48
});