Skip to main content

API

Ship email verification
in an afternoon.

Fareof's REST API gives you programmatic access to the same email verification and lead search engine that powers our web app. Simple JSON, no XML config, no SOAP. SDKs for Python, Node.js, and Go. Ship your integration in hours, not weeks.

API endpoints

GET/api/verify

Verify a single email address. Returns deliverability status, confidence score, MX/SMTP checks, and catch-all detection.

curl "https://api.fareof.com/api/[email protected]" \
  -H "Authorization: Bearer YOUR_API_KEY"
POST/api/verify/bulk

Verify up to 50,000 emails in a single request. Returns results as they complete or via webhook callback.

curl -X POST "https://api.fareof.com/api/verify/bulk" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"emails": ["[email protected]", "[email protected]"]}'
GET/api/search

AI-powered lead search. Describe who you need in natural language or use structured filters for role, industry, company size, and more.

curl "https://api.fareof.com/api/search?q=Series-B+fintech+CFOs+in+NYC" \
  -H "Authorization: Bearer YOUR_API_KEY"
GET/api/enrich/linkedin

Enrich a LinkedIn profile URL with verified email, phone, company info, and 50+ firmographic data points.

curl "https://api.fareof.com/api/enrich/linkedin?url=linkedin.com/in/alex" \
  -H "Authorization: Bearer YOUR_API_KEY"

Authentication

All API requests are authenticated with a Bearer token you generate from your dashboard. Keys are scoped to a single workspace and can be rotated or revoked instantly.

Authorization: Bearer YOUR_API_KEY

Rate limits

PlanVerifications / monthRate limitConcurrent requestsWebhooks
Free1,00010 req/s2
ProUnlimited50 req/s10Included
EnterpriseUnlimitedCustomCustomIncluded + SIEM

SDKs & libraries

Native SDKs for Python, Node.js, and Go with typed responses and built-in retry logic. Community-maintained wrappers for Ruby, PHP, and Java available on GitHub.

Python

pip install fareof

Node.js

npm install @fareof/api

Go

go get github.com/fareof/api-go

Webhooks

Subscribe to events for async workflows. Webhooks fire on bulk verification completion, new lead enrichment, and list export ready. Payloads are signed with HMAC-SHA256 for verification. Retry with exponential backoff, up to 5 attempts.

Ready to integrate?

Full API reference with request/response schemas, error codes, and playground is in our docs.