Skip to main content
POST
/
api
/
linkedin
/
user
/linkedin/user
curl --request POST \
  --url https://api.anysite.io/api/linkedin/user \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "user": "google",
  "with_experience": true,
  "with_education": true,
  "with_honors": true,
  "with_certificates": true,
  "with_languages": true,
  "with_patents": true,
  "with_skills": true
}'
[
  {
    "@type": "LinkedinUser",
    "internal_id": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "email": "<string>",
    "birth_date": {
      "@type": "LinkedinUserBirthDate",
      "day": 123,
      "month": 123
    },
    "websites": [
      {
        "@type": "LinkedinUserWebsite",
        "url": "<string>",
        "category": "<string>",
        "label": "<string>"
      }
    ],
    "headline": "<string>",
    "follower_count": 123,
    "image": "<string>",
    "connection_count": 123,
    "description": "<string>",
    "top_skills": [
      "<string>"
    ],
    "frame": "open_to_work",
    "location": "<string>",
    "pronouns": "<string>",
    "custom_pronouns": "<string>",
    "experience": [
      {
        "@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>"
      }
    ],
    "education": [
      {
        "@type": "LinkedinUserEducation",
        "company": {
          "@type": "LinkedinUserEducationCompany",
          "name": "<string>",
          "urn": {
            "type": "fsd_company",
            "value": "<string>"
          },
          "url": "<string>"
        },
        "major": "<string>",
        "interval": "<string>"
      }
    ],
    "languages": [
      {
        "@type": "LinkedinUserLanguage",
        "name": "<string>",
        "level": "<string>"
      }
    ],
    "certificates": [
      {
        "@type": "LinkedinUserCertificate",
        "name": "<string>",
        "company": {
          "@type": "LinkedinUserCertificateCompany",
          "name": "<string>",
          "urn": {
            "type": "fsd_company",
            "value": "<string>"
          },
          "url": "<string>"
        },
        "created_at": "<string>",
        "label": "<string>",
        "url": "<string>"
      }
    ],
    "honors": [
      {
        "@type": "LinkedinUserHonor",
        "name": "<string>",
        "issued_by": "<string>",
        "issued_at": "<string>",
        "text": "<string>"
      }
    ],
    "patents": [
      {
        "@type": "LinkedinUserPatent",
        "name": "<string>",
        "id": "<string>",
        "issued_at": "<string>",
        "text": "<string>",
        "url": "<string>",
        "inventors": [
          {
            "@type": "LinkedinUserPatentInventorUser",
            "urn": {
              "type": "fsd_company",
              "value": "<string>"
            }
          }
        ],
        "inventor_count": 123
      }
    ],
    "skills": [
      {
        "@type": "LinkedinUserSkill",
        "name": "<string>",
        "urn": {
          "type": "fsd_company",
          "value": "<string>"
        }
      }
    ],
    "verified": false
  }
]

Headers

access-token
string
required

Body

application/json
user
required

User Alias or URL or fsd_profile URN

Examples:

"google"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
with_experience
boolean
default:true

Set this Parameter to true if you need to get experience info. With this parameter enabled the method will work longer

with_education
boolean
default:true

Set this Parameter to true if you need to get education info. With this parameter enabled the method will work longer

with_honors
boolean
default:true

Set this Parameter to true if you need to get honors info. With this parameter enabled the method will work longer

with_certificates
boolean
default:true

Set this Parameter to true if you need to get certificates info. With this parameter enabled the method will work longer

with_languages
boolean
default:true

Set this Parameter to true if you need to get languages info. With this parameter enabled the method will work longer

with_patents
boolean
default:true

Set this Parameter to true if you need to get patents info. With this parameter enabled the method will work longer

with_skills
boolean
default:true

Set this Parameter to true if you need to get skills info. With this parameter enabled the method will work longer

Response

Successful Response

internal_id
object
required
urn
object
required
name
string
required
alias
string
required
url
string
required
@type
string
default:LinkedinUser
first_name
string | null
last_name
string | null
email
string | null
birth_date
object | null
websites
LinkedinUserWebsite · object[] | null
headline
string | null
follower_count
integer | null
image
string | null
connection_count
integer | null
description
string | null
top_skills
string[] | null
frame
enum<string> | null
Available options:
open_to_work,
hiring
location
string | null
pronouns
string | null
custom_pronouns
string | null
experience
LinkedinUserExperience · object[] | null
education
LinkedinUserEducation · object[] | null
languages
LinkedinUserLanguage · object[] | null
certificates
LinkedinUserCertificate · object[] | null
honors
LinkedinUserHonor · object[] | null
patents
LinkedinUserPatent · object[] | null
skills
LinkedinUserSkill · object[] | null
verified
boolean
default:false
I