Search lenders with filters
Search and list normalized lender names/identities with filters — resolves raw or variant lender names to canonical lender records. Use it to look up a lender by name or reconcile lender-name variants to a single canonical entity. If you only need how many lenders match and not the records themselves, send the same request body to countLenders.
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/lenders" \ -H "Content-Type: application/json" \ -d '{}'{
"cursor": "string",
"data": [
{
"canonicalName": "string",
"displayName": "string",
"id": "string",
"totalDocuments": 0
}
],
"total": 0
}{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}{
"error": "string"
}{
"error": "string",
"limit": 0,
"size": 0
}State volume breakdown across this lender's loans POST
Ranks the states this lender's loans were secured in, by volume. Labels are two-letter state abbreviations.
Count loans matching filters POST
Return the exact number of loans matching the given filters. Accepts the same request body as `listLoans` (pagination and sort are ignored). Use this when you only need a total; to get the matching loans themselves, send the same request body to `listLoans`.