Skip to main content

Documentation Index

Fetch the complete documentation index at: https://lava.so/docs/llms.txt

Use this file to discover all available pages before exploring further.

Lava’s first-party person-enrichment aggregator: one HTTP call fanned out across Apollo, People Data Labs, optional caller-connected CRMs (HubSpot/Folk/Affinity), Wikipedia, Apify social scrapers (Twitter/GitHub/Instagram), and Lava News, with per-field provenance and (on /profile) an LLM-synthesized narrative summary. /contact returns the narrow merged contact record; /profile returns the comprehensive dossier with social signals, recent business news, and citations. Best for sales and research workflows that want ‘one identifier in, dossier out’ without integrating each provider separately — charges sum of upstream costs plus a 0.05markupon/contactor0.05 markup on /contact or 0.10 on /profile. 2 endpoints available through Lava’s AI Gateway. See the Lava Enrich API docs for full documentation.
Supports both managed (Lava’s API keys) and unmanaged (bring your own credentials) mode.

Endpoints

Narrow contact-info merger across Apollo, People Data Labs, and (when opted in) the caller’s connected CRMs. Returns a flat MergedContact with per-field provenance citing which source supplied each value. Best for sales/CRM workflows that need name/title/company/email/phone for a known person. Charges $0.05 markup plus upstream provider costs.

POST https://api.lava.so/v1/enrich/contact — $0.05 / request
const data = await lava.gateway('https://api.lava.so/v1/enrich/contact', { body: {"email":"patrick@stripe.com"} });

Comprehensive person dossier. Runs /contact’s adapter set plus Wikipedia, the caller’s connected CRMs (opt-in), and Apify social scrapers (Twitter/GitHub/Instagram conditional on the matching handle in the input), in parallel with a direct Lava News fetch for recent business happenings (last 90 days). xAI Grok synthesizes structured profile fields plus a 2-4 paragraph narrative summary with citations linking the narrative back to source candidates and articles. Charges $0.10 markup plus upstream provider costs.

POST https://api.lava.so/v1/enrich/profile — $0.10 / request
const data = await lava.gateway('https://api.lava.so/v1/enrich/profile', {
  body: {
"email": "patrick@stripe.com",
"twitter_url": "https://twitter.com/patrickc",
"github_url": "https://github.com/patrickc"
},
});

Next Steps

All Providers

Browse all supported AI providers

Forward Proxy

Learn how to construct proxy URLs and authenticate requests