The LendScope API.
A planned way to embed serviceability into your CRM, aggregator software, or in-house lending tool — one POST returning max-borrow per lender across the 42-strong panel. The design below is a preview of what we're building.
Status: in development — not yet available. The endpoints below are a design preview, not a live service. Want it? Register your interest at api@lendscope.com.au and we'll bring you in when the private beta opens.
Endpoints
POST /v1/serviceability
Submit a scenario; receive ranked lender results.
curl -X POST https://api.lendscope.com.au/v1/serviceability \
-H "Authorization: Bearer $LENDSCOPE_KEY" \
-H "Content-Type: application/json" \
-d '{
"applicants": [{ "income": 145000, "type": "payg" }],
"dependants": 1,
"liabilities": { "credit_cards": 12000 },
"loan": { "amount": 850000, "term_years": 30, "ir_type": "p_and_i" }
}'
GET /v1/lenders
Returns the full lender panel with current rate, buffer, max-LVR, max-loan and shading policy fields. Updated nightly.
GET /v1/scenarios/{id}
Fetch a saved scenario by id. Scenarios created via the LendScope app are accessible here against the same workspace.
Rate limits
- Team: 60 requests / minute, 50,000 / month.
- Enterprise: custom — discussed at contract.
Webhooks
Subscribe to scenario.created, scenario.updated, and lender.policy_changed events. Signed with HMAC-SHA256, retries with exponential backoff for 24 hours.