enrich-lead
. The enrich_lead endpoint allows you to perform deep research on an individual—be it a prospect, candidate, or contact.
Enrich-Lead recursively reads through every link and with this knowledge it can answer questions like: What is this individual an expert in? How many publications do they have? Are they a fashion reseller? Do they have experience with M&A transactions? Etc.
Anything that you can think of is fair game for our API. Please give it a go, and let us know how we can help!
Tip: You can change the person in the parameters at the top. It can be anyone with a digital presence. For best results, include at least:name
andcompany
, or a direct identifier like
Prerequisites & Secrets
Get your SixtyFour API key
Follow these steps to create and copy your API key 1) Sign in Go to https://app.sixtyfour.ai/login and log in or sign up. 2) Enter an organization name once you’ve signed up and click Create Organization. 3) You’ll land on the dashboard/usage page with $25 in credits. In the left sidebar, open Keys → click Create new key → name it → Create key → copy the key value.If you’re in Google Colab
- Click the 🔑 (Secrets) icon in the left sidebar.
- Add a secret named
SIXTYFOUR_API_KEY
and paste your key. - Make sure the notebook can access the secret.
Output:
Enrich_Lead Request
For most queries, enrich_lead is the perfect tool. You send a request and get a complete profile back with a single call. The request requires two main components in its body:lead_info
: The initial data you have on the person. The more context you provide, the more focused and correct the research will be.struct
: Here is where you can request the niche pieces of information you’d like. The first part “name” is the field you want filled. The second part following the ”:” is the description given to the agent to help fulfill your exact request.
Output:
Enrich_Lead Request (Async)
For longer jobs, use the async endpoint and poll for completion.Output:
Tips
- Rate limit: 500 requests per minute per API key
- Don’t be vague — “Saarth” vs “Saarth Shah, CEO at Sixtyfour AI”
- Provide context — More details = better results
email
, linkedin
, or (name AND company)
.If fields are missing, request fewer first or add more context to
lead_info
. For large workloads, prefer async or the concurrent batch.
Next steps: try a different struct
, point the CSV output to your CRM, or move this into an automated script.
This notebook stays simple on purpose: small cells, clear comments, and the same pattern repeated so anyone can follow.