web_data_linkedin_people_search
Search for LinkedIn profiles using structured data retrieval to find professional contacts by name, providing reliable cached results without direct scraping.
Instructions
Quickly read structured linkedin people search data This can be a cache lookup, so it can be more reliable than scraping
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first_name | Yes | ||
last_name | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"first_name",
"last_name"
],
"type": "object"
}