Skip to main content
POST
/
person-phone
Phone lookup (coming soon)
curl --request POST \
  --url https://api.tryhuntr.com/person-phone \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "linkedin_url": "<string>"
}
'
{
  "success": true,
  "request_id": "<string>",
  "result": {},
  "price": 123,
  "credits_remaining": 123
}

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

Full name.

domain
string

Company domain.

linkedin_url
string

LinkedIn profile URL.

Response

Phone returned when found.

success
boolean
required
request_id
string
required
result
object
required
price
number
required
credits_remaining
number
required