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

# Recipes Overview

> Common patterns and use cases for building workflows

# Workflow Recipes

This section contains common patterns and recipes that users have built on our platform. Each recipe includes real-world examples and best practices.

## Categories

<CardGroup cols={2}>
  <Card title="CSV Import & Enrichment" icon="file-csv" href="/recipes/csv-enrichment">
    Import CSV data and enrich only empty values to save API calls
  </Card>

  <Card title="Data Enrichment" icon="database" href="/recipes/data-enrichment">
    Find websites, contact info, and enrich company/person data
  </Card>

  <Card title="Web Research" icon="magnifying-glass" href="/recipes/web-research">
    Research companies, find information, and analyze websites
  </Card>

  <Card title="Lead Generation" icon="users" href="/recipes/lead-generation">
    Build lists, qualify leads, and find decision makers
  </Card>

  <Card title="Email Personalization" icon="envelope" href="/recipes/email-personalization">
    Generate personalized email content and variables
  </Card>

  <Card title="CRM Integration" icon="arrow-right-arrow-left" href="/recipes/crm-integration">
    Push data to HubSpot, Pipedrive, and other CRMs
  </Card>

  <Card title="Data Validation" icon="circle-check" href="/recipes/data-validation">
    Validate and filter data based on ICP criteria
  </Card>
</CardGroup>

## Common Patterns

### 1. **Empty Value Enrichment Pattern**

Check if value exists before enriching—save API calls on filled data.

### 2. **SERP + Scraping Pattern**

Search for a company, get their website, then scrape it for information.

### 3. **LinkedIn Enrichment Pattern**

Find LinkedIn profiles/companies, enrich with contact data.

### 4. **AI Classification Pattern**

Use AI to categorize, validate, or extract structured data from unstructured content.

### 5. **Multi-Source Fallback Pattern**

Try multiple data sources in sequence until you find what you need.

### 6. **Deduplication Pattern**

Check if data already exists before creating new records.

## Getting Started

Each recipe page includes:

* **Use Case**: What problem it solves
* **Code Example**: Working code you can copy
* **Explanation**: How it works step-by-step
* **Variations**: Different ways to adapt the pattern
* **Best Practices**: Tips for optimal results
