Skip to main content
POST
/
person-linkedin-url
Find a person's LinkedIn profile URL
curl --request POST \
  --url https://api.tryhuntr.com/person-linkedin-url \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Patrick Collison",
  "domain": "stripe.com"
}
'
{
  "success": true,
  "request_id": "req_1746123456_pl1x2y",
  "name": "Patrick Collison",
  "company_or_domain": "stripe.com",
  "result": {
    "status": "FOUND",
    "profileUrl": "https://www.linkedin.com/in/patrick-collison"
  },
  "price": 0.012,
  "credits_remaining": 4.988
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
name
string
required

Full name of the person (first and last), e.g. Patrick Collison.

domain
string

Company domain, e.g. stripe.com. Provide domain, company, or job_title.

company
string

Company name when domain is unknown, e.g. Stripe.

job_title
string

Job title when company/domain is unknown, e.g. CEO.

Response

LinkedIn URL lookup complete.

success
boolean
request_id
string
name
string
company_or_domain
string

Present when domain or company was used.

job_title
string

Present when job_title was used.

result
object
price
number

$0.012 when a profile URL is found; 0 when not found.

credits_remaining
number