search_linkedin_users
Find LinkedIn users by applying filters such as name, job title, company, location, industry, education, and keywords to identify relevant professionals.
Instructions
Search for LinkedIn users with various filters like keywords, name, title, company, location etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company_keywords | No | Exact word in the company name | |
count | Yes | Maximum number of results (max 1000) | |
current_company | No | Company URN or name | |
education | No | Education URN or name | |
first_name | No | Exact first name | |
industry | No | Industry URN or name | |
keywords | No | Any keyword for searching in the user page. | |
last_name | No | Exact last name | |
location | No | Location name or URN | |
past_company | No | Past company URN or name | |
school_keywords | No | Exact word in the school name | |
timeout | No | Timeout in seconds (20-1500) | |
title | No | Exact word in the title |
Input Schema (JSON Schema)
{
"properties": {
"company_keywords": {
"description": "Exact word in the company name",
"type": "string"
},
"count": {
"default": 10,
"description": "Maximum number of results (max 1000)",
"type": "number"
},
"current_company": {
"description": "Company URN or name",
"type": "string"
},
"education": {
"description": "Education URN or name",
"type": "string"
},
"first_name": {
"description": "Exact first name",
"type": "string"
},
"industry": {
"description": "Industry URN or name",
"type": "string"
},
"keywords": {
"description": "Any keyword for searching in the user page.",
"type": "string"
},
"last_name": {
"description": "Exact last name",
"type": "string"
},
"location": {
"description": "Location name or URN",
"type": "string"
},
"past_company": {
"description": "Past company URN or name",
"type": "string"
},
"school_keywords": {
"description": "Exact word in the school name",
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds (20-1500)",
"type": "number"
},
"title": {
"description": "Exact word in the title",
"type": "string"
}
},
"required": [
"count"
],
"type": "object"
}