Skip to main content
POST
/
api
/
linkedin
/
company
/
employees
/linkedin/company/employees
curl --request POST \
  --url https://api.anysite.io/api/linkedin/company/employees \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "companies": [
    "company:14064608"
  ],
  "keywords": "Alex",
  "first_name": "Bill",
  "last_name": "Gates",
  "count": 123
}'
[
  {
    "@type": "LinkedinCompanyEmployee",
    "internal_id": {
      "type": "<string>",
      "value": "<string>"
    },
    "urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "headline": "<string>",
    "location": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
companies
LinkedinURN[Literal[<LinkedinURNPrefix.company: 'company'>]] · object[]
required

Company URNs

Examples:
["company:14064608"]
count
integer
required

Max result count

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords
string | null

Any keyword for searching in the user page

Examples:

"Alex"

first_name
string | null

Search for exact first name

Examples:

"Bill"

last_name
string | null

Search for exact last name

Examples:

"Gates"

Response

Successful Response

internal_id
object
required
urn
object
required
name
string
required
url
string
required
@type
string
default:LinkedinCompanyEmployee
image
string | null
headline
string | null
location
string | null
I