New260+ blocks and 240+ tools are now fully documented
DocumentationReferenceTool IntegrationsData Enrichment
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

PropertyValue
Providersixtyfour
Categorytools
AuthAPI Key (x-api-key header)

Operations

OperationTool IDDescription
Find Phonesixtyfour_find_phoneFind phone numbers for a lead using Sixtyfour AI.
Find Emailsixtyfour_find_emailFind email addresses for a lead using Sixtyfour AI.
Enrich Leadsixtyfour_enrich_leadEnrich lead information with contact details, social profiles, and company data using Sixtyfour AI.
Enrich Companysixtyfour_enrich_companyEnrich company data with additional information and find associated people using Sixtyfour AI.

Configuration

sixtyfour_find_phone

ParameterTypeRequiredDescription
apiKeystringYesSecret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}.
namestringYesFull name of the person.
companystringNoCompany name.
linkedinUrlstringNoLinkedIn profile URL.
domainstringNoCompany website domain.
emailstringNoEmail address.

sixtyfour_find_email

ParameterTypeRequiredDescription
apiKeystringYesSecret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}.
namestringYesFull name of the person.
companystringNoCompany name.
linkedinUrlstringNoLinkedIn profile URL.
domainstringNoCompany website domain.
phonestringNoPhone number.
titlestringNoJob title.
modestringNoEmail discovery mode: PROFESSIONAL (default) or PERSONAL.

sixtyfour_enrich_lead

ParameterTypeRequiredDescription
apiKeystringYesSecret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}.
leadInfostringYesLead information as a JSON object with key-value pairs (e.g. name, company, title, linkedin).
structstringYesFields to collect as a JSON object. Keys are field names, values are descriptions (e.g. {"email": "The individual's email address", "phone": "Phone number"}).
researchPlanstringNoOptional research plan to guide enrichment strategy.

sixtyfour_enrich_company

ParameterTypeRequiredDescription
apiKeystringYesSecret. Sixtyfour API key. Sent as the x-api-key header — set as {{SIXTYFOUR_API_KEY}}.
targetCompanystringYesCompany data as a JSON object (e.g. {"name": "Acme Inc", "domain": "acme.com"}).
structstringYesFields to collect as a JSON object. Keys are field names, values are descriptions (e.g. {"website": "Company website URL", "num_employees": "Employee count"}).
findPeoplebooleanNoWhether to find people associated with the company.
fullOrgChartbooleanNoWhether to retrieve the full organizational chart.
researchPlanstringNoOptional strategy describing how the agent should search for information.
peopleFocusPromptstringNoDescription of people to find (roles, responsibilities).
leadStructstringNoCustom 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 has address (string), status (string — OK or UNKNOWN), and type (string — COMPANY or PERSONAL).
  • personalEmails (json, optional) — Personal email addresses found (only in PERSONAL mode). Each entry has address (string), status (string — OK or UNKNOWN), and type (string — COMPANY or PERSONAL).

sixtyfour_enrich_lead

  • notes (string, optional) — Research notes about the lead.
  • structuredData (json) — Enriched lead data matching the requested struct fields.
  • 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 requested struct fields.
  • 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-id

Tips

  • Authentication uses an API key passed in the x-api-key header. 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, set mode to PERSONAL to populate the personalEmails output; in the default PROFESSIONAL mode only the emails array is returned. Pass extra signals like linkedinUrl, domain, or title to improve match accuracy.
  • enrich_lead and enrich_company expect leadInfo / targetCompany and struct as valid JSON strings — the tool throws "must be valid JSON" if they fail to parse. The struct object maps each desired field name to a description, and the enriched values come back under structuredData with cited references and a confidenceScore (0-10).