/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
The renter’s RentFAX member ID. Checked first when multiple identifiers are supplied.
The renter’s email address. Normalized to lowercase before matching.
The renter’s phone number. Non-digit characters are stripped before matching, so
(555) 867-5309 and 5558675309 resolve to the same record.The renter’s driver’s license number. Normalized to uppercase before matching.
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
true when the request was processed successfully, regardless of whether a record was found.true if a matching renter record exists in the network; false otherwise.Screening recommendation derived from the composite score.
Bucketed risk classification.
Composite risk score, 0 – 1000. Present only when
found is true.Maximum possible score. Always
1000.The identifier used to locate the record:
member_id, email, phone, license, or name. Present only when found is true.Basic profile of the matched renter. Present only when
found is true.Aggregated incident and financial summary. Present only when
found is true.Array of risk flag identifiers attached to the renter’s record. Empty array when no flags are set.
Human-readable summary of the screening result, suitable for display in your UI.
ISO 8601 timestamp of when this check was performed.
Version of the API that served the response. Currently
"1.0".