Skip to main content
POST
/
api
/
linkedin
/
email
/
user
/linkedin/email/user
curl --request POST \
  --url https://api.anysite.io/api/linkedin/email/user \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "email": "<string>",
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "email": "<string>",
    "@type": "@email_user",
    "company_name": "<string>",
    "location": "<string>",
    "image": "<string>",
    "connection_count": 123,
    "experience_count": 123,
    "education_count": 123,
    "activity_count": 123,
    "top_skills": [],
    "experience": [],
    "education": [],
    "activity": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
email
string
required

Email to get user by email

Example:

"dekeyelll@gmail.com"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
alias
string
required
url
string
required
email
string
required
@type
string
default:@email_user
company_name
string | null
location
string | null
image
string | null
connection_count
integer | null
experience_count
integer | null
education_count
integer | null
activity_count
integer | null
top_skills
string[]
experience
UserExperience · object[]
education
UserEducation · object[]
activity
UserActivity · object[]