> ## 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 built around real documents you can download and run against.

## Recipes

Each recipe solves one document-processing problem from start to finish.

<CardGroup cols={2}>
  <Card title="Process Documents in Batches" icon="layer-group" href="/docs/cookbooks/batch-extraction">
    Apply one extraction schema to a folder of similar documents and process several files concurrently.
  </Card>

  <Card title="Check Onboarding Documents" icon="id-card" href="/docs/cookbooks/kyc-document-consistency">
    Classify an identity document and two proofs of address, cross-check their fields, and route unreadable values to review.
  </Card>

  <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="Multilingual Extraction" icon="language">
    Coming soon: pull the same structured fields out of documents written in over 50 languages.
  </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>
