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: <access-token>' \
  --data '{
  "timeout": 300,
  "email": "dekeyelll@gmail.com",
  "count": 5
}'
[
  {
    "@type": "LinkedinEmailUser",
    "internal_id": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "emails": [
      "<string>"
    ],
    "phone_numbers": [
      "<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>",
    "verified": false
  }
]

Headers

access-token
string
required

Body

application/json
email
string
required

Email to get user by email

Examples:

"dekeyelll@gmail.com"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
count
integer
default:5

Max result count

Required range: x > 0

Response

Successful Response

internal_id
object
required
urn
object
required
name
string
required
alias
string
required
url
string
required
emails
string[]
required
phone_numbers
string[]
required
@type
string
default:LinkedinEmailUser
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
verified
boolean
default:false
I