⚙Tool
64 (Sixtyfour) Tools
Find phone numbers and emails, and enrich leads and companies with AI-powered research using Sixtyfour
64 (Sixtyfour AI) finds contact information and enriches leads and companies with structured, AI-researched data. Use these tools in a workflow to discover phone numbers, locate professional or personal email addresses, and augment lead or company records with custom fields backed by cited sources.
Overview
| Property | Value |
|---|---|
| Provider | sixtyfour |
| Category | tools |
| Auth | API Key (x-api-key header) |
Operations
| Operation | Tool ID | Description |
|---|---|---|
| Find Phone | sixtyfour_find_phone | Find phone numbers for a lead using Sixtyfour AI. |
| Find Email | sixtyfour_find_email | Find email addresses for a lead using Sixtyfour AI. |
| Enrich Lead | sixtyfour_enrich_lead | Enrich lead information with contact details, social profiles, and company data using Sixtyfour AI. |
| Enrich Company | sixtyfour_enrich_company | Enrich company data with additional information and find associated people using Sixtyfour AI. |
Configuration
sixtyfour_find_phone
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Secret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}. |
name | string | Yes | Full name of the person. |
company | string | No | Company name. |
linkedinUrl | string | No | LinkedIn profile URL. |
domain | string | No | Company website domain. |
email | string | No | Email address. |
sixtyfour_find_email
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Secret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}. |
name | string | Yes | Full name of the person. |
company | string | No | Company name. |
linkedinUrl | string | No | LinkedIn profile URL. |
domain | string | No | Company website domain. |
phone | string | No | Phone number. |
title | string | No | Job title. |
mode | string | No | Email discovery mode: PROFESSIONAL (default) or PERSONAL. |
sixtyfour_enrich_lead
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Secret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}. |
leadInfo | string | Yes | Lead information as a JSON object with key-value pairs (e.g. name, company, title, linkedin). |
struct | string | Yes | Fields to collect as a JSON object. Keys are field names, values are descriptions (e.g. {"email": "The individual's email address", "phone": "Phone number"}). |
researchPlan | string | No | Optional research plan to guide enrichment strategy. |
sixtyfour_enrich_company
| Parameter | Type | Required | Description |
|---|---|---|---|
apiKey | string | Yes | Secret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}. |
targetCompany | string | Yes | Company data as a JSON object (e.g. {"name": "Acme Inc", "domain": "acme.com"}). |
struct | string | Yes | Fields to collect as a JSON object. Keys are field names, values are descriptions (e.g. {"website": "Company website URL", "num_employees": "Employee count"}). |
findPeople | boolean | No | Whether to find people associated with the company. |
fullOrgChart | boolean | No | Whether to retrieve the full organizational chart. |
researchPlan | string | No | Optional strategy describing how the agent should search for information. |
peopleFocusPrompt | string | No | Description of people to find (roles, responsibilities). |
leadStruct | string | No | Custom schema for returned lead data as a JSON object. |
Outputs
sixtyfour_find_phone
name(string, optional) — Name of the person.company(string, optional) — Company name.phone(string, optional) — Phone number(s) found.linkedinUrl(string, optional) — LinkedIn profile URL.
sixtyfour_find_email
name(string, optional) — Name of the person.company(string, optional) — Company name.title(string, optional) — Job title.phone(string, optional) — Phone number.linkedinUrl(string, optional) — LinkedIn profile URL.emails(json) — Professional email addresses found. Each entry hasaddress(string),status(string —OKorUNKNOWN), andtype(string —COMPANYorPERSONAL).personalEmails(json, optional) — Personal email addresses found (only inPERSONALmode). Each entry hasaddress(string),status(string —OKorUNKNOWN), andtype(string —COMPANYorPERSONAL).
sixtyfour_enrich_lead
notes(string, optional) — Research notes about the lead.structuredData(json) — Enriched lead data matching the requestedstructfields.references(json) — Source URLs and descriptions used for enrichment.confidenceScore(number, optional) — Quality score for the returned data (0-10).
sixtyfour_enrich_company
notes(string, optional) — Research notes about the company.structuredData(json) — Enriched company data matching the requestedstructfields.references(json) — Source URLs and descriptions used for enrichment.confidenceScore(number, optional) — Quality score for the returned data (0-10).
YAML Example
sixtyfour_1:
type: sixtyfour
name: "64"
inputs:
operation: "sixtyfour_find_email"
apiKey: "{{SIXTYFOUR_API_KEY}}"
name: "Jane Doe"
company: "Acme Inc"
linkedinUrl: "https://linkedin.com/in/janedoe"
mode: "PROFESSIONAL"
connections:
outgoing:
- target: next-block-idTips
- Authentication uses an API key passed in the
x-api-keyheader. Store your key as an environment variable and reference it as{{SIXTYFOUR_API_KEY}}rather than hard-coding it in the block. - For
find_email, setmodetoPERSONALto populate thepersonalEmailsoutput; in the defaultPROFESSIONALmode only theemailsarray is returned. Pass extra signals likelinkedinUrl,domain, ortitleto improve match accuracy. enrich_leadandenrich_companyexpectleadInfo/targetCompanyandstructas valid JSON strings — the tool throws "must be valid JSON" if they fail to parse. Thestructobject maps each desired field name to a description, and the enriched values come back understructuredDatawith citedreferencesand aconfidenceScore(0-10).