|
| 1 | +--- |
| 2 | +title: Sixtyfour AI |
| 3 | +description: Enrich leads and companies with AI-powered research |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="sixtyfour" |
| 10 | + color="#000000" |
| 11 | +/> |
| 12 | + |
| 13 | +## Description |
| 14 | + |
| 15 | +[Sixtyfour AI](https://sixtyfour.ai) is an AI-powered sales intelligence platform that helps GTM teams find contact information and enrich lead and company data. The Sixtyfour block connects your workflows to Sixtyfour's enrichment APIs, enabling automated prospecting and CRM enrichment. |
| 16 | + |
| 17 | +### Key capabilities |
| 18 | + |
| 19 | +- **Find Phone** — Discover phone numbers for a lead given their name, company, LinkedIn URL, or other identifiers. |
| 20 | +- **Find Email** — Find professional or personal email addresses for a lead. Supports `PROFESSIONAL` (company emails) and `PERSONAL` (personal emails like Gmail) modes. Returns email validation status (`OK` or `UNKNOWN`) and type (`COMPANY` or `PERSONAL`). |
| 21 | +- **Enrich Lead** — Turn partial lead records into full contact profiles. Provide a `struct` defining exactly which fields you want back (email, phone, title, social profiles, etc.) and Sixtyfour's research agent will find them. |
| 22 | +- **Enrich Company** — Enrich company data and optionally find associated people. Supports `find_people` to discover employees, `full_org_chart` for comprehensive coverage, and `people_focus_prompt` to target specific roles. |
| 23 | + |
| 24 | +### Authentication |
| 25 | + |
| 26 | +Sixtyfour uses API key authentication. Pass your API key from the [Sixtyfour dashboard](https://app.sixtyfour.ai) into the **API Key** field. |
| 27 | + |
| 28 | +### Notes |
| 29 | + |
| 30 | +- The **Enrich Lead** and **Enrich Company** endpoints are long-running operations. Typical response times are 1–5 minutes, and can reach 10 minutes for complex lookups. |
| 31 | +- The `struct` and `lead_struct` fields accept JSON objects where keys are the field names you want returned and values are plain-English descriptions guiding the research agent. |
| 32 | + |
| 33 | +## Usage Instructions |
| 34 | + |
| 35 | +Find emails, phone numbers, and enrich lead or company data with contact information, social profiles, and detailed research using Sixtyfour AI. |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | +## Tools |
| 40 | + |
| 41 | +### `sixtyfour_find_phone` |
| 42 | + |
| 43 | +Find phone numbers for a lead using Sixtyfour AI. |
| 44 | + |
| 45 | +#### Input |
| 46 | + |
| 47 | +| Parameter | Type | Required | Description | |
| 48 | +| --------- | ---- | -------- | ----------- | |
| 49 | +| `apiKey` | string | Yes | Sixtyfour API key | |
| 50 | +| `name` | string | Yes | Full name of the person | |
| 51 | +| `company` | string | No | Company name | |
| 52 | +| `linkedinUrl` | string | No | LinkedIn profile URL | |
| 53 | +| `domain` | string | No | Company website domain | |
| 54 | +| `email` | string | No | Email address | |
| 55 | + |
| 56 | +#### Output |
| 57 | + |
| 58 | +| Parameter | Type | Description | |
| 59 | +| --------- | ---- | ----------- | |
| 60 | +| `name` | string | Name of the person | |
| 61 | +| `company` | string | Company name | |
| 62 | +| `phone` | string | Phone number\(s\) found | |
| 63 | +| `linkedinUrl` | string | LinkedIn profile URL | |
| 64 | + |
| 65 | +### `sixtyfour_find_email` |
| 66 | + |
| 67 | +Find email addresses for a lead using Sixtyfour AI. |
| 68 | + |
| 69 | +#### Input |
| 70 | + |
| 71 | +| Parameter | Type | Required | Description | |
| 72 | +| --------- | ---- | -------- | ----------- | |
| 73 | +| `apiKey` | string | Yes | Sixtyfour API key | |
| 74 | +| `name` | string | Yes | Full name of the person | |
| 75 | +| `company` | string | No | Company name | |
| 76 | +| `linkedinUrl` | string | No | LinkedIn profile URL | |
| 77 | +| `domain` | string | No | Company website domain | |
| 78 | +| `phone` | string | No | Phone number | |
| 79 | +| `title` | string | No | Job title | |
| 80 | +| `mode` | string | No | Email discovery mode: PROFESSIONAL \(default\) or PERSONAL | |
| 81 | + |
| 82 | +#### Output |
| 83 | + |
| 84 | +| Parameter | Type | Description | |
| 85 | +| --------- | ---- | ----------- | |
| 86 | +| `name` | string | Name of the person | |
| 87 | +| `company` | string | Company name | |
| 88 | +| `emails` | json | Professional email addresses found | |
| 89 | +| ↳ `address` | string | Email address | |
| 90 | +| ↳ `status` | string | Validation status \(OK or UNKNOWN\) | |
| 91 | +| ↳ `type` | string | Email type \(COMPANY or PERSONAL\) | |
| 92 | +| `personalEmails` | json | Personal email addresses found \(only in PERSONAL mode\) | |
| 93 | +| ↳ `address` | string | Email address | |
| 94 | +| ↳ `status` | string | Validation status \(OK or UNKNOWN\) | |
| 95 | +| ↳ `type` | string | Email type \(COMPANY or PERSONAL\) | |
| 96 | + |
| 97 | +### `sixtyfour_enrich_lead` |
| 98 | + |
| 99 | +Enrich lead information with contact details, social profiles, and company data using Sixtyfour AI. |
| 100 | + |
| 101 | +#### Input |
| 102 | + |
| 103 | +| Parameter | Type | Required | Description | |
| 104 | +| --------- | ---- | -------- | ----------- | |
| 105 | +| `apiKey` | string | Yes | Sixtyfour API key | |
| 106 | +| `leadInfo` | string | Yes | Lead information as JSON object with key-value pairs \(e.g. name, company, title, linkedin\) | |
| 107 | +| `struct` | string | Yes | Fields to collect as JSON object. Keys are field names, values are descriptions \(e.g. \{"email": "The individual\'s email address", "phone": "Phone number"\}\) | |
| 108 | +| `researchPlan` | string | No | Optional research plan to guide enrichment strategy | |
| 109 | + |
| 110 | +#### Output |
| 111 | + |
| 112 | +| Parameter | Type | Description | |
| 113 | +| --------- | ---- | ----------- | |
| 114 | +| `notes` | string | Research notes about the lead | |
| 115 | +| `structuredData` | json | Enriched lead data matching the requested struct fields | |
| 116 | +| `references` | json | Source URLs and descriptions used for enrichment | |
| 117 | +| `confidenceScore` | number | Quality score for the returned data \(0-10\) | |
| 118 | + |
| 119 | +### `sixtyfour_enrich_company` |
| 120 | + |
| 121 | +Enrich company data with additional information and find associated people using Sixtyfour AI. |
| 122 | + |
| 123 | +#### Input |
| 124 | + |
| 125 | +| Parameter | Type | Required | Description | |
| 126 | +| --------- | ---- | -------- | ----------- | |
| 127 | +| `apiKey` | string | Yes | Sixtyfour API key | |
| 128 | +| `targetCompany` | string | Yes | Company data as JSON object \(e.g. \{"name": "Acme Inc", "domain": "acme.com"\}\) | |
| 129 | +| `struct` | string | Yes | Fields to collect as JSON object. Keys are field names, values are descriptions \(e.g. \{"website": "Company website URL", "num_employees": "Employee count"\}\) | |
| 130 | +| `findPeople` | boolean | No | Whether to find people associated with the company | |
| 131 | +| `fullOrgChart` | boolean | No | Whether to retrieve the full organizational chart | |
| 132 | +| `researchPlan` | string | No | Optional strategy describing how the agent should search for information | |
| 133 | +| `peopleFocusPrompt` | string | No | Description of people to find \(roles, responsibilities\) | |
| 134 | +| `leadStruct` | string | No | Custom schema for returned lead data as JSON object | |
| 135 | + |
| 136 | +#### Output |
| 137 | + |
| 138 | +| Parameter | Type | Description | |
| 139 | +| --------- | ---- | ----------- | |
| 140 | +| `notes` | string | Research notes about the company | |
| 141 | +| `structuredData` | json | Enriched company data matching the requested struct fields | |
| 142 | +| `references` | json | Source URLs and descriptions used for enrichment | |
| 143 | +| `confidenceScore` | number | Quality score for the returned data \(0-10\) | |
| 144 | + |
| 145 | + |
0 commit comments