TrustMark
Lender and broker directory — search, profiles, and reviews.
TrustMark is the LendWorks directory of lenders and brokers. Search for entities, view detailed profiles with ratings and reviews, and embed trust signals in your application.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /v1/trustmark/search | Search the directory |
GET | /v1/trustmark/entities/{slug} | Get entity profile |
GET | /v1/trustmark/entities/{slug}/reviews | Get entity reviews |
SDK Usage
import { LW } from '@lendworks/lwjs'
const lw = new LW({ apiKey: 'lw_live_...' })
// Search for lenders in California
const results = await lw.trustmark.entities.search({
query: 'QuickFund',
state: 'CA',
minRating: 4.0,
sortBy: 'rating',
})
// Get a full profile
const profile = await lw.trustmark.entities.get('quickfund-capital')
console.log(profile.overallRating, profile.totalReviews)
// Get reviews
const reviews = await lw.trustmark.entities.reviews('quickfund-capital')Search Filters
| Parameter | Type | Description |
|---|---|---|
query | string | Full-text search term |
category | string | Entity category filter |
state | string | State filter (2-letter code) |
industry | string | Industry served |
productType | string | Financing product type |
minRating | number | Minimum rating (0-5) |
sortBy | string | rating, reviews, name, or newest |
page | number | Page number (default 1) |
limit | number | Results per page (max 50) |
Authentication
TrustMark search and profile endpoints are accessible with any valid platform API key. No specific platform scope is required for read-only directory access.