find-phone
(beta).
The find-phone
endpoint discovers phone numbers for a lead from the data you provide. It looks across relevant sources and returns a phone number as a string or an array of phone objects (number + region).
Tip: You can change the lead in the parameters at the top. Include name, company, and a strong identifier (e.g., LinkedIn, domain, or email) for best results.
Prerequisites & Secrets
Get your SixtyFour API key
- Sign in: https://app.sixtyfour.ai/login
- Create an organization → Keys → Create new key → Copy the key.
If you’re in Google Colab
- Click the 🔑 (Secrets) icon in the left sidebar.
- Add
SIXTYFOUR_API_KEY
and paste your key. - Make sure the notebook can access the secret.
Output:
Find_Phone Request
For most use cases,find-phone
is straightforward: pass a lead
object and receive a phone value in return.
The request body requires:
- lead (object): Lead information (name/company recommended; LinkedIn/domain/email help).
- String:
"+1 555-123-4567"
- Array of objects:
[{"number": "+1 555-123-4567", "region": "US"}, ...]
- Empty string:
""
when no phone is found.
Output:
How to change values
- Edit the lead fields (name/company/LinkedIn/domain/email).
- If you have multiple identifiers, include them—more context improves accuracy.
- Expect
phone
to be a string, an array of objects, or an empty string.