Skip to main content
POST
Filtering by location, industry, or round type? Use exact permalinks — a wrong value for locations, industries, or super_categories returns zero results with no error. Resolve them via /location/search and /industry/search first. See Filtering & Permalinks.

Authorizations

Authorization
string
header
required

API key provided as a Bearer token

Body

application/json
person_type
enum<string>
default:any

Restrict results to one population. company returns only people with a current employer (founders, executives, employees). investor returns only people who invest. any (default) returns the union — anyone matching the other filter blocks regardless of population.

Available options:
company,
investor,
any
Example:

"company"

identifiers
object

Look up specific people by identifier

person
object

Person attribute filters

company
object

Current-employer attribute filters. Setting any field implicitly requires the person to have a current employer.

investor
object

Filters on the investor entity (firm) and on the person's deal activity. Setting any field (including any nested deals.* field) implicitly requires the person to be an investor.

page
integer
default:0

Page number (0-based)

Required range: x >= 0
page_size
integer
default:10

Number of results per page (max 500)

Required range: 1 <= x <= 500
sort_by
enum<string>
default:most_recent_deal_date

Sort order. All values are universally accepted — non-applicable values (e.g. lead_deal_count when no investor filter is set) resolve to 0 / null via COALESCE and naturally sort to the bottom (DESC). Ignored when company.search_query or investor.deals.search_query is set (results are then ordered by semantic relevance).

Available options:
most_recent_deal_date,
total_raised,
latest_deal_size,
name,
total_deal_count,
deal_count_last_12_months,
lead_deal_count,
lead_deal_count_last_12_months,
filtered_deal_count

Response

Successful search results

success
boolean
required
Example:

true

data
object
required
meta
object
required
message
string

Optional friendly message (e.g. "No people found matching your filters" when empty)

Last modified on July 27, 2026