Skip to main content
The /v1/renter/check endpoint searches the RentFAX network for a renter record and returns a real-time screening result. You can pass any one of the supported identifiers — the API will match the first record found, working through the priority order member_id → email → phone → license → name. When no record exists, the API still returns ok: true with found: false and a default recommendation of APPROVED, so you can safely screen first-time renters without special-casing a 404.
Every call is logged against your API key and billed as one screening credit. The searched renter can also see which organizations have looked them up via the RentFAX Renter Portal.

Endpoint

Authentication

Include your API key in one of two ways:

Query parameters

member_id
string
The renter’s RentFAX member ID. Checked first when multiple identifiers are supplied.
email
string
The renter’s email address. Normalized to lowercase before matching.
phone
string
The renter’s phone number. Non-digit characters are stripped before matching, so (555) 867-5309 and 5558675309 resolve to the same record.
license
string
The renter’s driver’s license number. Normalized to uppercase before matching.
name
string
The renter’s full name. Matched against the normalized name index; useful as a last resort when no other identifier is available.
At least one parameter is required. If you supply none, the API returns 400 Bad Request.

Response fields

ok
boolean
required
true when the request was processed successfully, regardless of whether a record was found.
found
boolean
required
true if a matching renter record exists in the network; false otherwise.
recommendation
string
required
Screening recommendation derived from the composite score.
risk_tier
string
required
Bucketed risk classification.
score
number
Composite risk score, 0 – 1000. Present only when found is true.
score_max
number
Maximum possible score. Always 1000.
match_method
string
The identifier used to locate the record: member_id, email, phone, license, or name. Present only when found is true.
renter
object
Basic profile of the matched renter. Present only when found is true.
summary
object
Aggregated incident and financial summary. Present only when found is true.
flags
string[]
Array of risk flag identifiers attached to the renter’s record. Empty array when no flags are set.
message
string
Human-readable summary of the screening result, suitable for display in your UI.
checked_at
string
ISO 8601 timestamp of when this check was performed.
api_version
string
Version of the API that served the response. Currently "1.0".

Examples

Response — renter found

Response — renter not found

When found is false, you can proceed with the rental. The renter simply has no history in the RentFAX network yet.