Skip to main content
The /v1/renters endpoint returns a list of renter records associated with your organization in RentFAX. You can use this to build dashboards, sync renter data to your own database, or audit which renters your team has on file. Each item in the response includes the full renter data object, prefixed with its id.
This endpoint returns at most 50 records per call and does not currently support cursor-based pagination. If your organization has more than 50 renters, contact support for bulk export options.

Endpoint

Authentication

This endpoint requires the x-api-key header. Bearer token authentication is not accepted here.
If the key is missing or invalid, the API returns 401 Unauthorized.

Query parameters

orgId
string
required
Your organization’s RentFAX ID. Results are scoped to renters belonging to your organization.

Response

The response is a JSON array. Each element is the renter’s stored data object with the document id field added at the top level.
id
string
The renter’s unique ID within your organization. Use this as renter_id when calling /v1/renter/score.
[...data fields]
object
All fields stored on the renter record. The exact set of fields depends on how the renter was created, but typically includes name, email, phone, verification status, and risk score data.

Example

cURL

Response

To get a detailed risk score for a specific renter, pass their id as renter_id to GET /v1/renter/score.