Skip to main content
The /v1/renter/score endpoint returns the full breakdown of a renter’s composite risk score. While /v1/renter/check gives you a pass/review/deny recommendation, this endpoint gives you the underlying math: four weighted components that add up to a score out of 1000, plus the financial data that feeds those calculations. Use it when you need to explain a decision to a renter, build a custom scoring UI, or audit how a score changed over time.

Endpoint

Authentication

Include your API key in one of two ways:

Query parameters

renter_id
string
required
The internal RentFAX renter ID. You can obtain this from the renterId field in a /v1/search response, or from your own renter records.

Score components

The composite score is a weighted average of four components: Each component score is on a 0 – 1000 scale. The composite is computed as:

Response fields

ok
boolean
required
true when the request was processed successfully.
renter_id
string
required
The renter ID that was scored, echoed back for correlation.
composite_score
number
required
The weighted composite score, 0 – 1000.
score_max
number
required
Maximum possible score. Always 1000.
components
object
required
Individual score components with their weights and qualitative labels.
financials
object
required
Raw financial data from the renter’s report history.
calculated_at
string
required
ISO 8601 timestamp of when this score was calculated.

Example

cURL

Response

Scores are calculated on demand from the renter’s most recent 20 reports. Call this endpoint again after new reports are filed to get an updated score.