Skip to main content

Introduction

Access a fully-typed library of data enrichments—from LinkedIn profiles to contact info to company intelligence. All available directly in your code. Just type services. and let your editor guide you.

Available Enrichments

Getting Started

All enrichments are fully typed with TypeScript definitions. Just call services. and go:
// Find a LinkedIn profile
const linkedinUrl = await services.person.linkedin.findUrl({
   name: "John Doe",
   company: "Acme Corp",
});

// Enrich company data
const companyData = await services.company.linkedin.enrich({
   url: "https://linkedin.com/company/acme",
});

// Get contact info
const contact = await services.person.contact.get({
   linkedinUrl,
   required: ["email"],
});