Person and company data enrichment API providing professional profiles, employment history, contact information, and company firmographics from a 3B+ record dataset.
Person and company data enrichment API providing professional profiles, employment history, contact information, and company firmographics from a 3B+ record dataset. Best for lead enrichment, identity resolution, and building comprehensive profiles from partial data (email, name, company). Unlike Apollo (sales-focused prospecting), People Data Labs emphasizes raw data enrichment and identity matching at scale.4 endpoints available through Lava’s AI Gateway. See the People Data Labs API docs for full documentation.
Supports both managed (Lava’s API keys) and unmanaged (bring your own credentials) mode.
const data = await lava.gateway('https://api.peopledatalabs.com/v5/person/search', { body: {"sql": "SELECT * FROM person WHERE location_country='united states'"},});
curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fperson%2Fsearch" \ -H "Authorization: Bearer $LAVA_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{"sql":"SELECT * FROM person WHERE location_country='united states'"}'
const data = await lava.gateway('https://api.peopledatalabs.com/v5/company/search', { body: {"sql":"SELECT * FROM company WHERE industry='software'"} });
curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.peopledatalabs.com%2Fv5%2Fcompany%2Fsearch" \ -H "Authorization: Bearer $LAVA_SECRET_KEY" \ -H "Content-Type: application/json" \ -d '{"sql":"SELECT * FROM company WHERE industry='software'"}'