Find Phone

Find a phone number using LinkedIn profile URL

POST/v1/findPhoneSend
Server URL
https://api.hatchhq.ai
Headers
x-api-key *string
Body
linkedinUrl*string

Authorization

x-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired
linkedinUrlRequiredstring

LinkedIn profile URL of the person

curl -X POST "https://api.hatchhq.ai/v1/findPhone" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "linkedinUrl": "https://www.linkedin.com/in/nanduvijay/"
  }'

Successfully found phone number

Response
{
  "phoneNumber": "+1-234-567-8910"
}
TypeScript
export interface Response {
  phoneNumber: string;
}