Skip to main content
POST
/
api
/
linkedin
/
user
/
experience
/linkedin/user/experience
curl --request POST \
  --url https://api.anysite.io/api/linkedin/user/experience \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "urn": "urn:li:fsd_profile:ACoAACmguogBIdbijM6YpcIganWLJ67yKyV5kd4",
  "count": 123
}'
[
  {
    "@type": "LinkedinUserExperience",
    "company": {
      "@type": "LinkedinUserExperienceCompany",
      "name": "<string>",
      "urn": {
        "type": "fsd_company",
        "value": "<string>"
      },
      "url": "<string>"
    },
    "position": "<string>",
    "work_type": "on-site",
    "employment": "full-time",
    "interval": "<string>",
    "period": "<string>",
    "location": "<string>",
    "description": "<string>"
  }
]

Headers

access-token
string
required

Body

application/json
urn
object
required

User URN, only fsd_profile urn type is allowed

count
integer
required

Max result count

Required range: x > 0
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

company
object
required
@type
string
default:LinkedinUserExperience
position
string | null
work_type
enum<string> | null
Available options:
on-site,
hybrid,
remote
employment
enum<string> | null
Available options:
full-time,
part-time,
permanent,
self-employment,
freelance,
contract,
internship,
apprenticeship,
indirect contract
interval
string | null
period
string | null
location
string | null
description
string | null
I