Skip to main content
POST
/
api
/
linkedin
/
company
/
employee_stats
/linkedin/company/employee_stats
curl --request POST \
  --url https://api.anysite.io/api/linkedin/company/employee_stats \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "urn": "company:79111745"
}'
[
  {
    "@type": "LinkedinCompanyEmployeeStats",
    "locations": [
      {
        "@type": "<string>",
        "name": "<string>",
        "count": 123
      }
    ],
    "educations": [
      {
        "@type": "<string>",
        "name": "<string>",
        "count": 123
      }
    ],
    "skills": [
      {
        "@type": "<string>",
        "name": "<string>",
        "count": 123
      }
    ],
    "functions": [
      {
        "@type": "<string>",
        "name": "<string>",
        "count": 123
      }
    ],
    "majors": [
      {
        "@type": "<string>",
        "name": "<string>",
        "count": 123
      }
    ]
  }
]

Headers

access-token
string
required

Body

application/json
urn
object
required

Company URN

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

locations
LinkedinCompanyEmployeeStatsBlock · object[]
required
educations
LinkedinCompanyEmployeeStatsBlock · object[]
required
skills
LinkedinCompanyEmployeeStatsBlock · object[]
required
functions
LinkedinCompanyEmployeeStatsBlock · object[]
required
majors
LinkedinCompanyEmployeeStatsBlock · object[]
required
@type
string
default:LinkedinCompanyEmployeeStats
I