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: <api-key>' \
  --data '
{
  "companies": [
    {
      "type": "<string>",
      "value": "<string>"
    }
  ],
  "count": 123,
  "timeout": 300,
  "keywords": "Alex",
  "first_name": "Bill",
  "last_name": "Gates"
}
'
[
  {
    "internal_id": {
      "type": "<string>",
      "value": "<string>"
    },
    "urn": {
      "type": "<string>",
      "value": "<string>"
    },
    "name": "<string>",
    "url": "<string>",
    "@type": "LinkedinCompanyEmployee",
    "image": "<string>",
    "headline": "<string>",
    "location": "<string>"
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

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

Company URNs

count
integer
required

Max result count

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

Example:

"Alex"

first_name
string | null

Search for exact first name

Example:

"Bill"

last_name
string | null

Search for exact last name

Example:

"Gates"

Response

Successful Response

internal_id
LinkedinURN[Literal[<LinkedinURNPrefix.member: 'member'>]] · object
required
urn
LinkedinURN[Literal[<LinkedinURNPrefix.fsd_profile: 'fsd_profile'>]] · object
required
name
string
required
url
string
required
@type
string
default:LinkedinCompanyEmployee
image
string | null
headline
string | null
location
string | null