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

string
The renter’s RentFAX member ID. Checked first when multiple identifiers are supplied.
string
The renter’s email address. Normalized to lowercase before matching.
string
The renter’s phone number. Non-digit characters are stripped before matching, so (555) 867-5309 and 5558675309 resolve to the same record.
string
The renter’s driver’s license number. Normalized to uppercase before matching.
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

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