Skip to main content
POST
/
api
/
linkedin
/
search
/
users
/linkedin/search/users
curl --request POST \
  --url https://api.anysite.io/api/linkedin/search/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 123,
  "timeout": 300,
  "keywords": "",
  "first_name": "",
  "last_name": "",
  "title": "",
  "company_keywords": "",
  "school_keywords": "",
  "current_company": [
    "company:1441"
  ],
  "past_company": [
    "company:1441"
  ],
  "location": [
    "urn:li:geo:103689695"
  ],
  "industry": [
    "industry:96"
  ],
  "education": [
    "urn:li:fsd_company:96"
  ]
}
'
[
  {
    "internal_id": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "urn": {
      "type": "fsd_company",
      "value": "<string>"
    },
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "@type": "@linkedin_search_user",
    "image": "<string>",
    "headline": "<string>",
    "location": "<string>",
    "open_to_work": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keywords
string
default:""

Any keyword for searching in the user page.With the params result count will be small.Use other params to obtain a lot of results

Example:

"Director"

first_name
string
default:""

Search for exact first name. Using first_name or last_name significantly improves result quality

Example:

"Bill"

last_name
string
default:""

Search for exact last name. Using first_name or last_name significantly improves result quality

Example:

"Gates"

title
string
default:""

Search for exact word in the title

Example:

"Director"

company_keywords
string
default:""

Search for exact word in the company name

Example:

"Microsoft"

school_keywords
string
default:""

Search for exact word in the school name

Example:

"Harvard"

current_company

Current company URN or company name

Example:
["company:1441"]
past_company

Past company URN or company name

Example:
["company:1441"]
location

Location geo URN or location name

Example:
["urn:li:geo:103689695"]
industry

Industry URN or name. Valid top-level industries: Technology, Information and Media; Professional Services; Manufacturing; Hospitals and Health Care; Retail; Government Administration; Holding Companies; Oil, Gas, and Mining; Real Estate and Equipment Rental Services; Transportation, Logistics, Supply Chain and Storage; Utilities; Wholesale. Text auto-resolves to URN.

Example:
["industry:96"]
education

Education institution URN or name

Example:
["urn:li:fsd_company:96"]

Response

Successful Response

internal_id
LinkedinURN · object
required
urn
LinkedinURN · object
required
name
string
required
alias
string
required
url
string
required
@type
string
default:@linkedin_search_user
image
string | null
headline
string | null
location
string | null
open_to_work
boolean
default:false