Skip to main content
POST
/
api
/
linkedin
/
search
/
companies
/linkedin/search/companies
curl --request POST \
  --url https://api.anysite.io/api/linkedin/search/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 123,
  "timeout": 300,
  "keywords": "",
  "location": {
    "by keyword": "Tokyo",
    "by urn": [
      "urn:li:geo:103689695"
    ]
  },
  "industry": {
    "by keyword": "IT",
    "by urn": [
      "urn:li:industry:96"
    ]
  },
  "employee_count": []
}
'
[
  {
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "alias": "<string>",
    "@type": "LinkedinSearchCompany",
    "image": "<string>",
    "industry": "<string>"
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords
string
default:""

Any keyword for searching in the company page. For exact search put desired keywords into brackets

location

Location URN, can be obtained in /linkedin/search/locations, only geo urn type is allowed. Or location name.

Example:
{
"by keyword": "Tokyo",
"by urn": ["urn:li:geo:103689695"]
}
industry

Industry URN, can be obtained in /linkedin/search/industries, only industry urn type is allowed. Or industry name.

Example:
{
"by keyword": "IT",
"by urn": ["urn:li:industry:96"]
}
employee_count
enum<string>[]

Employee count

Available options:
1-10,
11-50,
51-200,
201-500,
501-1000,
1001-5000,
5001-10000,
10001+

Response

Successful Response

urn
LinkedinURN · object
required
name
string
required
url
string
required
alias
string
required
@type
string
default:LinkedinSearchCompany
image
string | null
industry
string | null