Search LinkedIn people by first and/or last name.
Endpoint
/v1/linkedin/people/search
Query
First name filter. At least one of `firstName` or `lastName` is required.
Last name filter. At least one of `firstName` or `lastName` is required.
const response = await fetch( "https://api.socialfetch.dev/v1/linkedin/people/search?firstName=James&lastName=Smith", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);