Skip to main content

Documentation Index

Fetch the complete documentation index at: https://orangeslice.mintlify.app/llms.txt

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

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

LinkedIn Profiles

Full profile enrichment with work history, skills & education

Contact Info

Work emails, personal emails & phone numbers

Company Intel

Firmographics, financials, traffic & headcount trends

Employee Search

Find decision makers by title, department & seniority

Job Listings

Scrape career pages & track hiring signals

AI Research

Deep research reports with live web access

Web Scraping

Extract data from any website with AI parsing

Web Search

Search engines and knowledge graph data

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"],
});