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

# Sample Documents

> Hosted Pulse Platform examples with real documents, sample outputs, and the right pipeline steps.

Use these examples when you want representative documents before connecting your own storage. Cards open the polished Platform examples with pre-processed output. Code samples below include stable `file_url` values for API tests.

<CardGroup cols={2}>
  <Card title="Bank Statement" icon="building-columns" href="https://platform.runpulse.com/dashboard/examples/637e5678-30b1-45fa-acc4-877f2d636419">
    2-page statement with Extract + Schema output for account fields, transactions, and checks.
  </Card>

  <Card title="Blackstone Report" icon="chart-line" href="https://platform.runpulse.com/dashboard/examples/b63fca41-ee50-4a65-bd71-64188d5bdbf5">
    6-page financial report for narrative extraction and citation review.
  </Card>

  <Card title="10-K Annual Report" icon="file-lines" href="https://platform.runpulse.com/dashboard/examples/0514fc05-8b0a-4a3b-9b9b-18ac89fc04e5">
    12-page annual report with Extract + Split output for section routing.
  </Card>

  <Card title="Rent Roll" icon="building" href="https://platform.runpulse.com/dashboard/examples/18ed11c2-dbce-4bf5-8385-102c55d13480">
    10-page real-estate document with Extract + Schema output for nested unit data.
  </Card>

  <Card title="Complex Table Document" icon="table" href="https://platform.runpulse.com/dashboard/examples/0e36367a-16d2-49c8-99ab-a6fe0df70409">
    8-page table stress test with Extract + Tables output.
  </Card>

  <Card title="Research Report" icon="chart-column" href="https://platform.runpulse.com/dashboard/examples/65a31c06-184a-4156-823b-e1686a368b18">
    3-page research report with table extraction output.
  </Card>

  <Card title="Attention Is All You Need" icon="book-open" href="https://platform.runpulse.com/dashboard/examples/3be15d23-d622-4f27-9843-ec2929140eec">
    15-page academic paper for long-form extraction, citations, and RAG tests.
  </Card>

  <Card title="Legal Filing" icon="scale" href="https://platform.runpulse.com/dashboard/examples/d4dfc1e2-60ac-4776-a5a8-20b88e68bf9f">
    32-page legal filing for long-document extraction and review workflows.
  </Card>
</CardGroup>

## Example Index

| Example                   | Pages | Built-in output  | Good for                                                        | Open                                                                                                           |
| ------------------------- | ----- | ---------------- | --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| Bank Statement            | 2     | Extract + Schema | Account metadata, transaction arrays, checks paid, citations.   | [Open Platform example](https://platform.runpulse.com/dashboard/examples/637e5678-30b1-45fa-acc4-877f2d636419) |
| Rent Roll                 | 10    | Extract + Schema | Nested arrays, property/unit data, real-estate review flows.    | [Open Platform example](https://platform.runpulse.com/dashboard/examples/18ed11c2-dbce-4bf5-8385-102c55d13480) |
| 10-K Annual Report        | 12    | Extract + Split  | Section routing and split topics before downstream schemas.     | [Open Platform example](https://platform.runpulse.com/dashboard/examples/0514fc05-8b0a-4a3b-9b9b-18ac89fc04e5) |
| Complex Table Document    | 8     | Extract + Tables | Spanning cells, multi-page tables, row/column reconstruction.   | [Open Platform example](https://platform.runpulse.com/dashboard/examples/0e36367a-16d2-49c8-99ab-a6fe0df70409) |
| Research Report           | 3     | Extract + Tables | Research-style tables, short report extraction, analyst review. | [Open Platform example](https://platform.runpulse.com/dashboard/examples/65a31c06-184a-4156-823b-e1686a368b18) |
| Blackstone Report         | 6     | Extract          | Financial narrative extraction, markdown quality, citations.    | [Open Platform example](https://platform.runpulse.com/dashboard/examples/b63fca41-ee50-4a65-bd71-64188d5bdbf5) |
| Attention Is All You Need | 15    | Extract          | Academic PDFs, figures, references, RAG chunking tests.         | [Open Platform example](https://platform.runpulse.com/dashboard/examples/3be15d23-d622-4f27-9843-ec2929140eec) |
| Legal Filing              | 32    | Extract          | Long legal documents, page-level review, async processing.      | [Open Platform example](https://platform.runpulse.com/dashboard/examples/d4dfc1e2-60ac-4776-a5a8-20b88e68bf9f) |

## Use A Sample With The API

Pass the public PDF URL directly as `file_url`. For example, the Bank Statement sample is stable at:

```python theme={null}
from pulse import Pulse

client = Pulse(api_key="YOUR_API_KEY")

result = client.extract(
    file_url="https://platform.runpulse.com/api/examples/637e5678-30b1-45fa-acc4-877f2d636419/pdf",
    async_=True,
)

print(result.job_id)
```

```typescript theme={null}
import { PulseClient } from "pulse-ts-sdk";

const client = new PulseClient({ apiKey: "YOUR_API_KEY" });

const result = await client.extract({
  fileUrl: "https://platform.runpulse.com/api/examples/637e5678-30b1-45fa-acc4-877f2d636419/pdf",
  async: true,
});

console.log(result.job_id);
```

## Use A Sample In The Platform

<Steps>
  <Step title="Open the processed example">
    Click the Platform link for any row above to inspect the pre-processed output.
  </Step>

  <Step title="Review the available tabs">
    Check Markdown, Tables, Schema, Split, citations, chunks, and figures depending on the example.
  </Step>

  <Step title="Try the document yourself">
    Sign in and use **Try this PDF** from the example viewer, or copy the `file_url` from the code sample into a new API request.
  </Step>
</Steps>

## Enterprise Notes

* These examples are public demo documents. Do not use private customer files in cookbook pages.
* Use the Platform link when you want to inspect saved outputs without consuming credits.
* Use the `file_url` values in code samples when you want to test your own API request, webhook handler, or SDK code path.
* For regulated workflows, treat examples as smoke tests only; validate on representative documents inside your own storage boundary before production.
