PDF Redaction
Detect/Redact sensitive data from PDF with zero data retention.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Anonymize Pdf: Anonymize a PDF by detecting and redacting PII (Personally Identifiable Information). :param pdf: Base64-encoded PDF document to process. :param api_key: API key used to authenticate an
- Detect Pii Pdf: Detect PII (Personally Identifiable Information) in a PDF without redacting it. :param pdf: Base64-encoded PDF document to process. :param api_key: API key used to authenticate and met
- Anonymize Pdf Custom: Anonymize a PDF using a custom natural-language prompt instead of predefined tags. :param pdf: Base64-encoded PDF document to process. :param prompt: Custom prompt describing wha
What data it sees
Do you need an account
No: the server works without sign-in
Detect/Redact sensitive data from PDF with zero data retention.
Server tool list (3)
Raw names from tools/list. Only developers need these.
| anonymize_pdf | Anonymize a PDF by detecting and redacting PII (Personally Identifiable Information). :param pdf: Base64-encoded PDF document to process. :param api_key: API key used to authenticate and meter usage. Generate one at https://pdf-redaction.com/apikeys/. :param tags: PII tags to detect and redact. If empty, all available tags are used. :param force_ocr: Force OCR processing even if text is extractable from the PDF. :param rotated_text: Enable detection and recognition of rotated text. :param redact_text: Enable text redaction using NER. When False, PII is detected but not redacted from the returned PDF. :param min_chunk_size: Minimum chunk size for text processing. :param ocr_langs: OCR languages to use for text recognition. :param custom_tags: Additional custom tags to detect and redact. :return: dict with "pdf" (base64-encoded redacted PDF), "detected_pii", and "processing_time". |
| detect_pii_pdf | Detect PII (Personally Identifiable Information) in a PDF without redacting it. :param pdf: Base64-encoded PDF document to process. :param api_key: API key used to authenticate and meter usage. Generate one at https://pdf-redaction.com/apikeys/. :param tags: PII tags to detect. If empty, all available tags are used. :param force_ocr: Force OCR processing even if text is extractable from the PDF. :param rotated_text: Enable detection and recognition of rotated text. :param ocr_langs: OCR languages to use for text recognition. :param custom_tags: Additional custom tags to detect. :return: dict with "detected_pii" and "processing_time". |
| anonymize_pdf_custom | Anonymize a PDF using a custom natural-language prompt instead of predefined tags. :param pdf: Base64-encoded PDF document to process. :param prompt: Custom prompt describing what to detect and redact, e.g. "Redact all dates, names, and email addresses". :param api_key: API key used to authenticate and meter usage. Generate one at https://pdf-redaction.com/apikeys/. :return: dict with "pdf" (base64-encoded redacted PDF), "detected_pii", and "processing_time". |