/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.string
The renter’s RentFAX member ID. Normalized to uppercase. Returns at most 1 result.
string
The renter’s email address. Normalized to lowercase. Returns at most 5 results.
string
The renter’s phone number. Non-digit characters are stripped before matching. Returns at most 5 results.
string
The renter’s full name. Matched using a prefix search on the normalized name index. Returns at most 10 results.
Response fields
boolean
required
true when the request was processed successfully.number
required
Number of records returned.
object[]
required
Array of matching renter records.
Example
cURL