LendWorksLendWorksDocs

ClearPath

Education platform — browse courses and certifications.

ClearPath is the LendWorks education platform. Browse courses for brokers, lenders, borrowers, and partners. Track certifications and professional development.

Endpoints

MethodPathDescription
GET/v1/clearpath/coursesBrowse the course catalog
GET/v1/clearpath/courses/{slug}Get course detail with modules

SDK Usage

import { LW } from '@lendworks/lwjs'

const lw = new LW({ apiKey: 'lw_live_...' })

// Browse lender-track courses
const courses = await lw.clearpath.courses.list({
  track: 'lender',
  difficulty: 'beginner',
})

// Get full course detail
const course = await lw.clearpath.courses.get('intro-to-mca')
console.log(course.title, course.modules.length, 'modules')

Catalog Filters

ParameterTypeDescription
trackstringbroker, lender, borrower, brokerage_owner, or partner
difficultystringbeginner, intermediate, or advanced
searchstringKeyword search (max 200 chars)
pagenumberPage number (default 1)
limitnumberResults per page (max 50)

Course Detail

Course detail responses include the full module and lesson hierarchy:

{
  "title": "Introduction to MCA",
  "personaTrack": "broker",
  "difficultyLevel": "beginner",
  "estimatedDurationMinutes": 45,
  "modules": [
    {
      "title": "What is an MCA?",
      "lessons": [
        { "title": "Overview", "lessonType": "video", "estimatedMinutes": 8 },
        { "title": "Key Terms", "lessonType": "text", "estimatedMinutes": 5 }
      ]
    }
  ]
}