Skip to main content
POST
/
search_linkedin_profile
Search for LinkedIn Profile
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/search_linkedin_profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Smith",
  "company": "acme.com",
  "count_only": true
}
'
{
  "results": {
    "count": 3
  },
  "status": "ok",
  "metadata": {
    "tokens_charged": 0,
    "tokens_remaining": "unlimited",
    "daily_results_remaining": 9876
  }
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Keys follow the format ms_XXXXXXXXXXX.

Body

application/json
name
string

Full name (e.g. 'John Smith') — parsed into first and last name automatically.

first_name
string

First name (used if name is not provided).

last_name
string

Last name (used if name is not provided).

company
string

Company domain (e.g. 'acme.com') or URL (e.g. 'https://acme.com') — normalized to domain.

Example:

"acme.com"

company_domain
string

Alias for company — company domain or URL.

count_only
boolean
default:false

Free — returns the count of matching results without fetching data or charging tokens. Use this first to gauge result volume before committing to a full search.

Response

Success