get_linkedin_company
Retrieve detailed company information from LinkedIn using company aliases, URLs, or URN identifiers to access business data and profiles.
Instructions
Get detailed information about a LinkedIn company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | Yes | Company Alias or URL or URN (example: 'openai' or 'company:1441') | |
timeout | No | Timeout in seconds |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"description": "Company Alias or URL or URN (example: 'openai' or 'company:1441')",
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
}
},
"required": [
"company"
],
"type": "object"
}