Skip to main content
Contacts in Revont represent the prospects your team speaks with. Revont creates a contact record automatically the first time it identifies a new prospect on a call — typically by reading the email address from the calendar invite. Each contact accumulates a history of all calls where they appeared, making it easy to track engagement over time. Use the Contacts API to list all known prospects, look up individual contact records, and retrieve associated call history. This is particularly useful for syncing Revont’s contact data with your CRM or building per-account reporting.

List all contacts

Returns a paginated list of all contacts in your workspace, ordered by creation time descending.
cURL

Query Parameters

integer
Number of contacts to return per page. Maximum 100, default 20.
string
Pagination cursor returned as next_cursor in a previous response. Omit to start from the beginning.
string
Filter results to the contact with this exact email address. Returns at most one result.

Response

Response Fields

array
Array of contact objects.
string | null
Opaque cursor to pass as cursor in your next request. null when there are no further pages.
boolean
true if additional contacts exist beyond the current page.

Retrieve a contact

Returns a single contact record and their full call history within your workspace.
cURL

Path Parameters

string
required
The unique ID of the contact to retrieve.

Response

Response Fields

The response includes all fields from the list endpoint, plus:
array
Abbreviated call history for this contact, ordered by created_at descending.