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
| Method | Path | Description |
|---|---|---|
GET | /v1/clearpath/courses | Browse 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
| Parameter | Type | Description |
|---|---|---|
track | string | broker, lender, borrower, brokerage_owner, or partner |
difficulty | string | beginner, intermediate, or advanced |
search | string | Keyword search (max 200 chars) |
page | number | Page number (default 1) |
limit | number | Results 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 }
]
}
]
}