Skip to main content
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.

Bank Statement

2-page statement with Extract + Schema output for account fields, transactions, and checks.

Blackstone Report

6-page financial report for narrative extraction and citation review.

10-K Annual Report

12-page annual report with Extract + Split output for section routing.

Rent Roll

10-page real-estate document with Extract + Schema output for nested unit data.

Complex Table Document

8-page table stress test with Extract + Tables output.

Research Report

3-page research report with table extraction output.

Attention Is All You Need

15-page academic paper for long-form extraction, citations, and RAG tests.

Legal Filing

32-page legal filing for long-document extraction and review workflows.

Example Index

ExamplePagesBuilt-in outputGood forOpen
Bank Statement2Extract + SchemaAccount metadata, transaction arrays, checks paid, citations.Open Platform example
Rent Roll10Extract + SchemaNested arrays, property/unit data, real-estate review flows.Open Platform example
10-K Annual Report12Extract + SplitSection routing and split topics before downstream schemas.Open Platform example
Complex Table Document8Extract + TablesSpanning cells, multi-page tables, row/column reconstruction.Open Platform example
Research Report3Extract + TablesResearch-style tables, short report extraction, analyst review.Open Platform example
Blackstone Report6ExtractFinancial narrative extraction, markdown quality, citations.Open Platform example
Attention Is All You Need15ExtractAcademic PDFs, figures, references, RAG chunking tests.Open Platform example
Legal Filing32ExtractLong legal documents, page-level review, async processing.Open Platform example

Use A Sample With The API

Pass the public PDF URL directly as file_url. For example, the Bank Statement sample is stable at:
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)
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

1

Open the processed example

Click the Platform link for any row above to inspect the pre-processed output.
2

Review the available tabs

Check Markdown, Tables, Schema, Split, citations, chunks, and figures depending on the example.
3

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.

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.