?
peopleSearch
Search for people matching specific criteria using Apollo.io. Supports natural language queries and advanced filters.
mindstudio.peopleSearch({ smartQuery, enrichPeople, enrichOrganizations, limit, page, params }) → Result
Searches for people matching criteria via Apollo.io, from natural-language queries to advanced filters — the search counterpart to enrichPerson, which resolves someone you already know.
Parameters
smartQuery
string
RequiredNatural language search query (e.g. "marketing directors at SaaS companies in NYC")
enrichPeople
boolean
RequiredWhether to enrich each result with full contact details
enrichOrganizations
boolean
RequiredWhether to enrich each result with full company details
limit
string
RequiredMaximum number of results to return
page
string
RequiredPage number for pagination
params
object
RequiredAdvanced search filter parameters
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.peopleSearch({ smartQuery: /* ... */, enrichPeople: /* ... */, enrichOrganizations: /* ... */, limit: /* ... */, page: /* ... */, params: /* ... */ });