search_for_companies
Find companies on LinkedIn by applying specific search queries and match score thresholds. Filter results with a custom limit for precise, targeted data retrieval.
Instructions
Search for companies on Linkd using filters like query and match threshold.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acceptance_threshold | No | Match score threshold between 0 and 100 | |
limit | No | Maximum number of results to return (1–30) | |
query | Yes | The search query, e.g., 'Tech companies in California' |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"acceptance_threshold": {
"default": 60,
"description": "Match score threshold between 0 and 100",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return (1–30)",
"maximum": 30,
"minimum": 1,
"type": "number"
},
"query": {
"description": "The search query, e.g., 'Tech companies in California'",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}