> ## Documentation Index
> Fetch the complete documentation index at: https://orangeslice.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Every Enrichment You Need

> A fully-typed library of data enrichments built for sales

## 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

<CardGroup cols={2}>
  <Card title="LinkedIn Profiles" icon="linkedin" href="/services/person/linkedin">
    Full profile enrichment with work history, skills & education
  </Card>

  <Card title="Contact Info" icon="address-book" href="/services/person/contact">
    Work emails, personal emails & phone numbers
  </Card>

  <Card title="Company Intel" icon="building" href="/services/company/overview">
    Firmographics, financials, traffic & headcount trends
  </Card>

  <Card title="Employee Search" icon="users" href="/services/company/employees">
    Find decision makers by title, department & seniority
  </Card>

  <Card title="Job Listings" icon="briefcase" href="/services/company/careers">
    Scrape career pages & track hiring signals
  </Card>

  <Card title="AI Research" icon="brain" href="/services/ai/overview">
    Deep research reports with live web access
  </Card>

  <Card title="Web Scraping" icon="spider-web" href="/services/scrape/overview">
    Extract data from any website with AI parsing
  </Card>

  <Card title="Web Search" icon="globe" href="/services/web/overview">
    Search engines and knowledge graph data
  </Card>
</CardGroup>

## Getting Started

All enrichments are fully typed with TypeScript definitions. Just call `services.` and go:

```typescript theme={null}
// 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"],
});
```
