Everything you need to integrate with the LendWorks platform—from lead management and applications to funded deals and commissions.
Create, list, and update leads with full pipeline management, tagging, and advisor assignment.
Real-time reporting on pipeline health, team leaderboards, commission metrics, and conversion rates.
Real-time event delivery with HMAC-SHA256 signing, automatic retries, and dead letter queues.
Type-safe TypeScript SDK with auto-pagination, webhook verification, and built-in retry logic.
Our TypeScript SDK provides full type safety, automatic pagination, and built-in retry logic. Get started in minutes.
import { LendWorksClient } from '@lendworks/sdk-node'
const client = new LendWorksClient({
apiKey: process.env.LENDWORKS_API_KEY,
})
// Create a lead
const lead = await client.leads.create({
businessName: 'Acme Corp',
contactFirstName: 'Jane',
contactLastName: 'Doe',
email: 'jane@acme.com',
})
console.log(lead.data.id)