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

# Cookbooks

> End-to-end recipes that combine parsing, extraction, classification, and splitting to solve real document-processing problems.

The [API reference](/docs/api-reference/parser/parse-document) and the [Document Processing](/docs/document-processing/parsing/parsing) guides cover each endpoint on its own. Cookbooks go the other way: each one starts from a problem a team has, then walks the full path from raw file to a result you can ship, often chaining several operations together.

Every recipe is a complete, copy-pasteable walkthrough in Python and JavaScript, built around a real document you can download and run against.

## Pipelines & Workflows

Recipes that chain several operations into one pipeline.

<CardGroup cols={2}>
  <Card title="Process Documents in Batches" icon="layer-group">
    Coming soon: submit and track hundreds of documents concurrently without hitting rate limits.
  </Card>

  <Card title="Multilingual Extraction" icon="language">
    Coming soon: pull the same structured fields out of documents written in over 50 languages.
  </Card>
</CardGroup>

## Document Examples

Recipes that solve one real-world document task from start to finish.

<CardGroup cols={2}>
  <Card title="Automate Invoice Processing" icon="file-invoice-dollar">
    Coming soon: extract line items and totals from an invoice and route uncertain values to a human.
  </Card>

  <Card title="Sort and Extract a Mixed Document Pile" icon="scissors" href="/docs/cookbooks/sort-and-extract">
    Split a PDF holding several document types into one file per type, then run a type-specific extraction schema over each.
  </Card>

  <Card title="Redact Sensitive Data From a Document" icon="marker" href="/docs/cookbooks/redact-sensitive-data">
    Find personal data with extraction, locate every occurrence with parsing, and black it out to produce a clean redacted PDF.
  </Card>

  <Card title="Verify Identity Documents" icon="id-card">
    Coming soon: extract and cross-check fields from government IDs and proof-of-address documents.
  </Card>

  <Card title="Review a Redlined Contract" icon="file-contract">
    Coming soon: pull clauses, parties, and tracked changes out of a legal agreement.
  </Card>
</CardGroup>

<Note>
  Want a recipe for a use case that isn't here yet? Email [support@unsiloed.ai](mailto:support@unsiloed.ai) and tell us what you're building.
</Note>
