POST
/
phone
/
find
Find phone
curl --request POST \
  --url https://api.generect.com/api/v1/phone/find/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lead_id": "lead_abc123xyz"
}
'
{
  "data": {
    "lead_id": "lead_abc123xyz",
    "phone": {
      "number": "+14155550123",
      "status": "FOUND",
      "type": "mobile",
      "country": "US"
    }
  },
  "meta": {
    "amount_charged": 0.4
  }
}

Use Case:

Find a phone number by lead_id, linkedin_url, or by first_name + last_name + company.

Pricing

This is a billable endpoint — you are charged only for each phone number found. If no phone is found, the request is free.
Your price decreases automatically as your lifetime spend grows. Check your current tier and pricing →

Authorizations

Authorization
string
header
required

Use the required Token prefix. Example: Authorization: Token xxxxxxxxx

Body

application/json
lead_id
string
required

Generect lead identifier from Search, Preview, or Enrich.

Example:

"lead_abc123xyz"

Response

Phone finder result

data
object
meta
object

Operation metadata returned in every data/meta response.