Tổng quan Tổng quan Tin tức Tin tức
Chia sẻ

Ví dụ API để sao chép

Ví dụ prompt cho Document AI và Data APIs — dành cho Claude, Cursor và IDE của bạn.

PaperOffice llms.txt — integration in Claude and Cursor, no SDK theater.

Ví dụ API thực tế
  1. Paste llms.txt Into Claude, Cursor, or your IDE.
  2. State the intent What to build — or use a prompt from this page.
  3. Let it write the code The IDE delivers the working integration.

Document AI

Sao chép prompt, dán vào Claude hoặc Cursor – xong.

IDP Invoice + AI-OCR + Bounding Boxes

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build me an invoice extractor that:
1. Uploads a PDF via POST /job (multipart, field file_1)
2. Uses model=premium, idp_collection=invoice, processing_lane=instant (sync)
3. Reads every field from job_result.fields including its bbox array
4. Renders a verification view highlighting each value
   at its bounding box position

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Extract invoice fields including position in the document.

AI-OCR — text from image/PDF

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Write a minimal script that:
1. Sends an image or PDF to POST /job (multipart, field file_1)
2. Uses ocr_mode=complete and processing_lane=instant (sync)
3. Prints job_result.text

Modes: complete (+tables), grid (+bounding boxes), text (plain).
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Full text via POST /job (ocr_mode=complete).

AI PDF Split — split bulk PDFs

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a splitter for large batch PDFs (up to 3000 pages):
1. POST /job with template=pdf_ai_split (multipart, field file)
2. naming_instruction=Dokumenttyp_Datum_Absender,
   locale=de_DE, processing_lane=instant
3. List every entry of job_result.documents_created
   (suggested_filename + page_range)

The AI detects document boundaries automatically.
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Detect document boundaries and name output files.

Document Anonymize — redact PII

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt
Also use llms-full.txt for anonymize parameters (scenario, apply).

Build a GDPR anonymizer (preview → apply):
1. POST /job/add/workflow template=document_anonymize_preview (field file)
2. Set scenario=gdpr_auskunft (or externe_weitergabe / finanzdaten),
   redact_categories=all, optional whitelist / custom_redact
3. client_wait=false then poll GET /job/get/{job_id}
4. Show detected_pii.redact_box_ids + simplified_boxes
5. Apply: POST /job/add/paperoffice_dataripper___redact_image
   with files + bounding_boxes + redact_boxes from the preview
   (or MCP: po_anonymization_pii_detect → po_anonymization_redaction_apply
   with preview_job_id)
Optional one-shot: REST template=document_anonymize OR MCP po_anonymization_anonymize
  (no HITL; pass scenario/whitelist).
Redact Agent: POST /documents/redact-agent-run or MCP po_documents_redact_agent_run.

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Detect and redact names, IBAN, addresses.

Voice TTS — text to audio

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a text-to-speech generator:
1. POST /job with text=..., voice=Nadja, output_format=mp3
2. output=url and processing_lane=instant for a synchronous audio link
3. Play or download job_result.audio_url

Voices: Nadja, Thomas, Anna, Hans (DE) + 100+ more.
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Sync MP3 via voice=Nadja (and more).

IDP Contract + AI-OCR + Bounding Boxes

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a contract extractor that:
1. Uploads a PDF via POST /job (multipart, field file_1)
2. Uses model=premium, idp_collection=contract, processing_lane=instant (sync)
3. Reads parties, dates, notice_period from job_result.fields
   including each field's bbox array
4. Renders a verification view with bounding boxes

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Extract contract fields including position in the document.

E-Signature — create signature request

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build an e-signature request flow:
1. Ensure the document has a pofid in PaperOffice
2. POST /signatures/create with document_pofid (or pofid)
   and a signers array (name + email per signer)
3. Return the signature request id and status
4. Optionally POST /signatures/remind for pending signers

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Invite signers and manage status/reminders.

Digital registered mail — send by email

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a secure document delivery (digital registered mail):
1. POST /document_delivery/create_and_send with:
   pofids: ["POFID_HERE"],
   recipient_email, optional recipient_name,
   subject, optional message
2. security_mode=link → PDF password in the same email
   security_mode=secure_sms → link by email, password by SMS
   (requires recipient_phone in E.164, e.g. +49170…)
3. Show delivery_id and that access events are logged
   (Versandhistorie / delivery log)

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Secure delivery with PDF password (email or SMS) and delivery log.

Data & Security APIs

Geocoding, Weather, Fingerprint, VAT và hơn nữa — dưới dạng prompt.

Geocoding — Forward / Reverse / Autocomplete

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a geocoding helper that:
1. Forward: GET /geocoding/forward?q=...&lang=de
2. Reverse: GET /geocoding/reverse?lat=...&lon=...
3. Autocomplete: GET /geocoding/autocomplete?q=...
4. Prints display_name, lat, lon and credits_billed

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Address ↔ coordinates.

Weather — Current + Air Quality

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a weather lookup that:
1. Calls GET /weather/current?lat=...&lon=...&lang=de
2. Shows temperature, condition text and air quality if present
3. Displays credits_billed from the response

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Current weather including billing.

IP2Location — IP → place

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build an IP intelligence client that:
1. Calls GET /ip2location/full (empty ip = visitor IP)
2. Extracts country, city, geo_lat/lon, ISP
3. Optionally chains weather from the same response

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Location from IP, optional weather.

Device Fingerprint — Visitor ID

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a device fingerprint check that:
1. Collects client signals in the browser
2. POSTs to /fingerprint/identify
3. Returns visitor_id / confidence for fraud checks

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Visitor ID and confidence.

Fake Email Detector — disposable check

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build an email risk checker that:
1. Validates an address via the Fake Email Detector endpoint
2. Flags disposable / role / invalid domains
3. Returns a clear allow/deny recommendation

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Disposable mail and risk score.

VPN / Anonymity Check

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a VPN/proxy detector that:
1. Calls GET /ip2location/vpn?ip=...
2. Normalizes is_vpn, is_proxy, is_tor, is_datacenter flags
3. Shows a clear risk badge for the visitor

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
VPN, proxy, Tor, datacenter.

VAT Validator — EU VAT ID

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a VAT ID validator that:
1. Checks an EU VAT number via the VAT validator endpoint
2. Returns company name and address when valid
3. Handles invalid / not-found responses cleanly

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Validity and company data.

Currency Exchange — live rates

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a currency converter that:
1. Calls the currency exchange endpoint (from, to, amount)
2. Shows rate and converted amount
3. Caches the last rate for the UI

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Conversion with live rate.

Cho Claude, Cursor & Co.

Sao chép-dán các lời nhắc thực sự hoạt động

IDP Invoice Pipeline + Bounding Boxes + CSV

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Create a Python script that:
1. Takes a folder of invoice PDFs
2. Extracts all fields using POST /job with idp_collection=invoice
3. Returns bounding boxes for verification (bbox array)
4. Exports to CSV

Important: Use file_1 for uploads, model=premium.
Handle both sync (priority>=900) and async modes.
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Batch extraction with verification coordinates.

MCP Server — Document AI in the IDE

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Help me set up the MCP Server for PaperOffice in Cursor.
I want to use Document AI directly in my IDE.

Show me:
1. How to configure the MCP connection (POST /mcp)
2. Available tools via tools/list
3. How to process documents from my workspace

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Connect MCP and process workspace documents.

Voice Agent — STT + TTS

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Create a voice agent that:
1. Takes audio input (Speech-to-Text)
2. Processes the text
3. Generates audio response (Text-to-Speech)

Use POST /job with:
- TTS: voice=Nadja, output_format=mp3, output=url
- Use processing_lane=instant for sync TTS response.
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Process speech input and reply with audio.

Fraud Detection — Fingerprint + IP

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a fraud detection system that:
1. Checks device fingerprints
2. Validates IP geolocation
3. Detects suspicious patterns

Use the Security & Data AI endpoints.
These are instant APIs (no polling needed).
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Check device fingerprint and geo/IP signals.

Batch AI PDF Split

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Create a batch processor that:
1. Takes a folder of large PDFs (up to 3000 pages each)
2. Uses POST /job with template=pdf_ai_split
3. Uses naming_instruction for smart filenames
4. Handles async jobs with polling (priority<900)

Use locale=de_DE for German document types.
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Split folders of large PDFs asynchronously.

Document Classifier — OCR + folders

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a document classifier that:
1. Watches a folder for new PDFs
2. Uses OCR (POST /job, ocr_mode=complete) to extract text
3. Classifies into: invoice, contract, receipt, correspondence
4. Moves files to category subfolders
5. Logs results to classification_log.csv

Authenticate with: Authorization: Bearer po_ut_YOUR_API_KEY.
Priority=900 for sync response.
OCR, classify, sort into subfolders.

End-to-End

Giải pháp hoàn chỉnh cho các vấn đề thực tế

IDP invoices → accounting export

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build an accounts-payable pipeline:
1. Watch a folder for incoming invoice PDFs
2. Extract fields via POST /job (file_1, model=premium,
   idp_collection=invoice, processing_lane=instant)
3. Flag every field with confidence < 0.9 for manual review,
   including its bbox for the verification UI
4. Export vendor, total, date and IBAN as DATEV/Lexoffice CSV

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Tải lên PDF → AI-IDP + Hộp giới hạn → Xác thực → Xuất

IDP contracts + deadline alerts

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a contract analyzer:
1. Upload contracts via POST /job (file_1, model=premium,
   idp_collection=contract, processing_lane=instant)
2. Extract parties, start_date, end_date and notice_period
   from job_result.fields (each field includes a bbox)
3. Store the key terms in a knowledge graph
4. Alert me 90 days before a notice period expires

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Tải lên hợp đồng → Các điều khoản chính → Knowledge Graph → Cảnh báo

PDF Convert — Word / PowerPoint / PDF/A

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a PDF converter service:
1. POST /job with field file_1 and
   target_format=word | powerpoint | pdfa | webp
2. processing_lane=instant for a synchronous response
3. Return job_result.output_url as the download link

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Tải lên PDF → Chọn định dạng → Chuyển đổi → Tải xuống

Webhooks — handle job.completed

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a webhook event handler:
1. Register a webhook via POST /webhooks
   (url, events: job.completed + job.failed, secret)
2. Verify the X-PaperOffice-Signature header
   (HMAC SHA-256) on every delivery
3. Process job_result whenever job.completed arrives

Note: webhooks always require a token (account binding).
Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Đăng ký Webhook → Gửi tài liệu → Nhận sự kiện → Xử lý

OCR → TTS — document to audio

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a document-to-audio pipeline:
1. OCR via POST /job (file_1, ocr_mode=complete, processing_lane=instant)
2. Split job_result.text into 5000-character chunks
3. TTS per chunk: POST /job (text, voice=Nadja,
   output_format=mp3, output=url, processing_lane=instant)
4. Save all job_result.audio_url entries as a playlist

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
OCR tài liệu → Chuẩn bị văn bản → Tạo TTS → Lưu âm thanh

Batch OCR → CSV export

Prompt
Read this llms.txt (AI-optimized API docs):
https://api.paperoffice.ai/latest/docs/llms.txt

Build a batch OCR-to-CSV exporter:
1. Scan a folder for PDF/PNG/JPG/TIFF/WEBP files
2. For each file: POST /job (file_1, ocr_mode=complete,
   processing_lane=instant)
3. Collect filename, page_count, text preview and confidence
4. Write everything to ocr_results.csv

Auth: Authorization: Bearer po_ut_YOUR_API_KEY
Quét thư mục → OCR hàng loạt → Thu thập văn bản → Xuất CSV

Tiếp tục với API

llms.txt và Playground — không vòng vo.

Quý vị muốn dùng thử PaperOffice ở đâu?

Đăng ký miễn phí Mở ứng dụng Ứng dụng PaperOffice Sản phẩm đầy đủ: web, máy tính và di động. Thu thập, tổ chức, tìm kiếm và làm việc trên tài liệu cùng nhóm. Cần tài khoản miễn phí Mở Playground Playground Thử các chức năng được chọn ngay — không đăng ký, với khóa API demo bị hạn chế. Không cần đăng ký, nhưng có khóa API demo bị hạn chế