Skip to main content
GET
Search entity lists (named collections of companies or persons) by name.

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

Page number, 1-indexed. Clamped to >= 1.

per_page
integer
default:10

Results per page (default 10). Clamped to the range 1-50 (values outside are silently capped, not rejected).

after
string | null

Opaque cursor from a previous response's next_cursor. When supplied, the page starts immediately after the last record of that response and page is ignored — unlike page, this cannot skip or repeat records when the data changes mid-scan. Filters and sort must stay identical for the whole scan; changing one is a 400. Not supported by every list endpoint — those that support it return next_cursor.

name
string | null

Exact (case-sensitive) name match.

search
string | null

Case-insensitive substring search on name.

kind
enum<string> | null

Filter by list kind.

Available options:
PERSON,
COMPANY,
NOTE,
ACTIVITY,
FILE,
TASK,
OPPORTUNITY

Response

200 - application/json

Paginated list of entity lists.

items
EntityListResponseItem · object[]
required
page
integer
required
per_page
integer
required
total
integer | null
required
has_more
boolean | null
next_cursor
string | null