Skip to main content
The /v1/search endpoint lets you find renters in the RentFAX network before committing to a full screening check. Send one identifier in the request body and you’ll receive a list of matching records, each with an eligibility classification and rent score. This is useful for autocomplete lookups, pre-fill flows, and confirming that the right renter is selected before calling /v1/renter/check for the full report.
Only one identifier is used per request. When multiple fields are provided, the API applies this priority order: memberId → email → phone → name.

Endpoint

Authentication

Include your API key in one of two ways:

Request body

Send a JSON object with at least one of the following fields.
memberId
string
The renter’s RentFAX member ID. Normalized to uppercase. Returns at most 1 result.
email
string
The renter’s email address. Normalized to lowercase. Returns at most 5 results.
phone
string
The renter’s phone number. Non-digit characters are stripped before matching. Returns at most 5 results.
name
string
The renter’s full name. Matched using a prefix search on the normalized name index. Returns at most 10 results.

Response fields

ok
boolean
required
true when the request was processed successfully.
count
number
required
Number of records returned.
results
object[]
required
Array of matching renter records.

Example

cURL

Response

Response — no matches

Use the renterId from a search result to call /v1/renter/score for the full component breakdown, or /v1/renter/check with member_id for a complete screening report.