Skip to main content
POST
/
api
/
linkedin
/
user
/
email
/linkedin/user/email
curl --request POST \
  --url https://api.anysite.io/api/linkedin/user/email \
  --header 'Content-Type: application/json' \
  --header 'access-token: <access-token>' \
  --data '{
  "timeout": 300,
  "profile": "<string>"
}'
[
  {
    "@type": "UserEmail",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "internal_id": "<string>",
    "found": true
  }
]

Headers

access-token
string
required

Body

application/json
profile
required

LinkedIn internal_id, profile URL, alias, or set of them (max 10)

Minimum length: 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string<uuid>
required

User ID

email
string
required

Email address

alias
string
required

LinkedIn alias

name
string
required

User name

internal_id
string
required

Internal ID

@type
string
default:UserEmail
found
boolean
default:true

Whether user was found

I