Skip to main content
Search for profiles that match specific location and occupation criteria.

Method

client.searchByLocationOccupation.create(params: SearchByLocationOccupationCreateParams): Promise<SearchByLocationOccupationCreateResponse>

Parameters

location
string
required
The location to search within (e.g., “New York, NY”).
occupation
string
required
The occupation or job title to search for (e.g., “Software Engineer”).

Usage

const result = await client.searchByLocationOccupation.create({
  location: 'San Francisco, CA',
  occupation: 'Product Manager'
});

console.log(result);

Response

Returns a SearchByLocationOccupationCreateResponse object.