Partner Spotlight

Sixtyfour: Custom Research Agents for People and Company Data

Christian Pickett

Christian Pickett

Co-founder

Traditional data enrichment gives you static fields. Sixtyfour gives you AI research agents that actively search for the specific information you need.

Today we're highlighting Sixtyfour, an AI-powered research agent platform now available on Orthogonal.

What is Sixtyfour?

Sixtyfour builds custom research agents that enrich people and company data. Define what fields you need, the agent searches the web and returns structured results. Think of it as hiring a research assistant that works at API speed.

Key Features

Flexible Data Schemas

Define exactly what data you want. The agent returns structured results matching your schema, not a fixed set of fields.

Company Enrichment

Enrich company data with custom fields and optionally find key people at the organization.

Lead Enrichment

Start with a name and company, get back LinkedIn, email, phone, and any custom fields you define.

Contact Discovery

Find verified email addresses and phone numbers for any lead.

Using Sixtyfour with Orthogonal

Enrich a Lead

// Using @orth/sdk // Install: npm install @orth/sdk import Orthogonal from "@orth/sdk"; const orthogonal = new Orthogonal({ apiKey: process.env.ORTHOGONAL_API_KEY, }); // Enrich a lead with custom fields const output = await orthogonal.run({ api: "sixtyfour", path: "/enrich-lead", body: { lead_info: { name: "Satya Nadella", company: "Microsoft" }, struct: { email: "work email address", linkedin: "LinkedIn profile URL", years_at_company: "how long they've been at the company", previous_roles: "previous job titles and companies" } } }); console.log(output); // Returns structured data matching your schema

Enrich a Company

// Enrich company data and find key people const output = await orthogonal.run({ api: "sixtyfour", path: "/enrich-company", body: { target_company: { name: "Anthropic", domain: "anthropic.com" }, struct: { founded_year: "year the company was founded", employee_count: "approximate number of employees", funding_total: "total funding raised", latest_round: "most recent funding round details", key_products: "main products or services" }, find_people: true, people_focus_prompt: "Find the CEO, CTO, and VP of Engineering" } }); console.log(output); // Returns company data plus matching people

Find Email Address

// Find verified email for a lead const output = await orthogonal.run({ api: "sixtyfour", path: "/find-email", body: { lead: { first_name: "Jensen", last_name: "Huang", company: "NVIDIA" }, mode: "PROFESSIONAL" // or "PERSONAL" (must be uppercase) } }); console.log(output); // Returns: { email: [["jensenh@nvidia.com", "OK", "COMPANY"]], ... }

Find Phone Number

// Find phone number for a lead const output = await orthogonal.run({ api: "sixtyfour", path: "/find-phone", body: { lead: { first_name: "Brian", last_name: "Chesky", company: "Airbnb" } } }); console.log(output); // Returns: { phone: "+14014198290", ... }

Custom Research Plan

// Provide specific research instructions const output = await orthogonal.run({ api: "sixtyfour", path: "/enrich-lead", body: { lead_info: { name: "Sam Altman", company: "OpenAI" }, struct: { twitter_handle: "Twitter/X username", recent_talks: "recent conference appearances or talks", investment_portfolio: "companies they've invested in" }, research_plan: "Focus on recent public appearances and investment activity. Check Twitter, TechCrunch, and conference websites." } }); console.log(output);

Using x402 Protocol

Sixtyfour on Orthogonal supports x402 for autonomous agent payments using USDC stablecoins.

// Install: npm install x402-fetch viem import { wrapFetchWithPayment } from "x402-fetch"; import { privateKeyToAccount } from "viem/accounts"; const account = privateKeyToAccount(process.env.PRIVATE_KEY); const fetchWithPayment = wrapFetchWithPayment(fetch, account); // Find email with automatic USDC payment const url = "https://x402.orth.sh/sixtyfour/find-email"; const response = await fetchWithPayment(url, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ lead: { first_name: "Elon", last_name: "Musk", company: "Tesla" }, mode: "PROFESSIONAL" }) }); const data = await response.json(); console.log(data);

Available Endpoints

EndpointMethodDescriptionPrice
/enrich-leadPOSTEnrich a person with custom fields$0.10
/enrich-companyPOSTEnrich a company with custom fields$0.10
/find-emailPOSTFind verified email address$0.05
/find-phonePOSTFind verified phone number$0.30

Use Cases

Sales Intelligence

Build rich prospect profiles with exactly the data your sales team needs. Custom fields mean you get signal, not noise.

Recruiting

Research candidates beyond their resume. Find their open source contributions, conference talks, and side projects.

Competitive Analysis

Enrich competitor companies with funding history, key hires, and product details.

Due Diligence

Research founders and executives with custom schemas tailored to your investment criteria.

Lead Scoring

Enrich leads with data points that feed your scoring model. Years of experience, company stage, team size — whatever matters to you.

Why AI Research Agents?

Traditional enrichment APIs return fixed fields. Sixtyfour's approach is fundamentally different:

  1. Flexible schemas: Define what you need, not what the API offers
  2. Active research: Agents search the web, not just databases
  3. Context-aware: Research plans guide the agent to relevant sources
  4. Structured output: Get clean JSON matching your schema, ready for your pipeline

Try It Today

Sign up for Orthogonal and get $10 free credits to try Sixtyfour and dozens of other APIs. No API keys to manage, no accounts to create.

Get Started | View on Orthogonal | Sixtyfour Website