Skip to main content

Sixtyfour API Reference

Open on YouTube

Authentication

All API requests require an API key passed in the x-api-key header. You also need to set the Content-Type header to application/json.
x-api-key: YOUR_API_KEY
Content-Type: application/json

Get an API Key

Follow the steps in Get an API Key to create your account and generate a key.

Base URL

All API endpoints are available at:
https://api.sixtyfour.ai

Rate Limits

See Rate Limits for limits and retry guidance.

Endpoints

EndpointDescription
Enrich CompanyEnrich company data with additional information and find associated people
Enrich LeadEnrich lead information with contact details, social profiles, and company data
Find EmailFind professional or personal email addresses for leads
Find PhoneFind phone numbers for leads
QA AgentEvaluate and qualify data against predefined criteria
WebhooksReceive HTTP notifications when async jobs complete
WorkflowsCreate, manage, and execute batch enrichment pipelines
Deep SearchRun agentic deep searches with natural language queries; poll status and download results
Company Filter SearchSearch company records with structured OpenSearch DSL filters; supports cursor pagination

Error Handling

See Errors for status codes, error shapes, and retry guidance.

Deprecation Notice

The findings field in API responses is deprecated. It currently returns an empty list and will be removed in a future update. Use structured_data and notes instead.

Quick Example

Find an email address with a single cURL request:
curl -X POST "https://api.sixtyfour.ai/find-email" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "lead": {
      "name": "Saarth Shah",
      "company": "Sixtyfour AI"
    }
  }'