Redact PDF using JavaScript

Automatically find and redact sensitive data in PDFs using AI

Sign up to convert Try for FREE

Redact PDF features

Automatically detect and black out information in PDF document. Whether you need to secure business documents or protect personal information, our tool provides reliable, efficient, and user-friendly redaction solutions. Start safeguarding your PDFs today with our trusted data masking JS module.

ConvertAPI JavaScript library install

ConvertAPI provides a JavaScript module that allows you to perform a Redact PDF conversion with just a few lines of code. First, install the convertapi-js@~1.1 package from npm:

NPM package >
npm i convertapi-js@~1.1

If you are interested in our old version of non-module JavaScript library you can find it here.

Authenticate your JavaScript library

Next, obtain your secret key by signing up for a free account. Once you sign up, you'll receive 250 free conversions instantly! Grab your authentication secret from the account dashboard, and authenticate the ConvertAPI JavaScript library like this:

import ConvertApi from 'convertapi-js'
let convertApi = ConvertApi.auth('secret_or_token')

Redact PDF using JavaScript in no time!

Once you have your authentication in place, simply copy-paste this pdf to redact conversion code snippet into your JavaScript project. Redact PDF documents using JavaScript with no effort at all!

// Code snippet is using the ConvertAPI JavaScript Client: https://github.com/ConvertAPI/convertapi-library-js

// Code snippet is using the ConvertAPI Node.js Client: https://github.com/ConvertAPI/convertapi-nodejs

// Code snippet is using the ConvertAPI PHP Client: https://github.com/ConvertAPI/convertapi-php

// Code snippet is using the ConvertAPI Java Client: https://github.com/ConvertAPI/convertapi-java

// Code snippet is using the ConvertAPI C# Client: https://github.com/ConvertAPI/convertapi-dotnet

# Code snippet is using the ConvertAPI Ruby Client: https://github.com/ConvertAPI/convertapi-ruby

# Code snippet is using the ConvertAPI Python Client: https://github.com/ConvertAPI/convertapi-python

// Code snippet is using the ConvertAPI Go Client: https://github.com/ConvertAPI/convertapi-go

REM Code snippet is using the command line utility program: https://github.com/ConvertAPI/convertapi-cli

<!-- For conversions with the multiple file result please refer to this example: https://repl.it/@ConvertAPI/HTML-Form-with-multiple-file-result -->

Try the conversion online - no coding required!

You can try out advanced conversion parameters and test the conversion result online using our interactive demo tool. This tool will produce the same conversion output as if you were using the library from your solution, and it will auto-generate the code snippet for you!

Try for FREE!

Conversion parameters

PageRange String

Set page range. Example 1-10 or 1,2,5.

Preset Collection

The Preset parameter determines the type of sensitive data the AI will detect and redact from the document. It complements the Custom Redaction Options, enabling you to refine or expand the redaction criteria. Select manual to use your customized redaction options exclusively.

Choose a preset to define the type of sensitive data the AI will detect and redact from the document:

  • Auto – Automatically detects and redacts sensitive data across all categories, including PII, financial, healthcare, legal, and confidential information. Best for general redaction when the document type is unknown or contains mixed data.

  • GDPR - Redacts personal data as required by GDPR, including names, emails, IP addresses, phone numbers, and national IDs.

  • HIPAA - Ensures compliance with HIPAA by redacting protected health information (PHI) such as patient names, medical record numbers, diagnoses, and prescription details.

  • FERPA - Redacts personally identifiable student information to comply with FERPA, including student names, school records, and educational identifiers.

  • FOIA - Prevents the exposure of sensitive personal or national security data in documents released under FOIA. This includes classified content, addresses, and government IDs.

  • GLBA - Complies with GLBA by redacting financial data such as bank account numbers, credit card details, loan records, and investment information.

  • CCPA -Meets CCPA requirements by removing consumer personal data such as purchase history, geolocation, contact details, and online identifiers upon request.

  • Manual - Disables automatic AI detection preset. Only the manually set parameters will be used to determine what should be redacted. Ideal for users who want full control over redaction without AI-based automation.

Values:   auto gdpr hipaa ferpa foia glba ccpa manual

MinimumConfidence Double

Sets the minimum confidence threshold for AI-based detection of sensitive data. Higher values reduce false positives but may miss subtle matches.

RedactionColor String

Specifies the color used to mask redacted text, accepting formats such as Hexadecimal (e.g., #FFFFFF for white or #FF5733 for orange), RGB with an optional alpha channel (e.g., 255,255,255 for white or 255,255,255), and named colors (e.g., white, red, blue).

RedactionThickness Double

The RedactionThickness property controls the height of the redaction stroke line relative to the original line height.

  • A value of 1 means the stroke height matches the original line height.
  • Values less than 1 (e.g., 0.5) reduce the stroke height.
  • Values greater than 1 (e.g., 1.5 or 2) increase the stroke height.
PII Bool

Personally Identifiable Information (PII) - Detects and redacts common personal identifiers, including names, email addresses, phone numbers, birthdates, and home addresses.

PHI Bool

Patient Health Information (PHI) - Detects health-related information such as patient names, medical records, insurance details, and prescription data.

Financial Bool

Financial Data - Focuses on financial records, including credit card numbers, bank account numbers, financial transaction details, etc.

Legal Bool

Legal and Contractual Data - Detects legal and contractual terms, including case numbers, legal clauses, signatures, and confidential agreements.

Confidential Bool

Legal and Contractual Data - Detects proprietary business information, contracts and agreements, internal communications, trade secrets, intellectual property details, and sensitive corporate data.

RedactionData String

A JSON array defining specific values for redaction. Supports three methods:

  • Text – Exact text to be redacted.
  • RegexEscaped regular expression patterns for flexible text matching.
  • Detect – AI-based detection using a description of what to find.

If a preset is selected (e.g., gdpr, hipaa), RedactionData will work in addition to the preset’s AI-based detection. If the manual preset is selected, automatic preset is disabled, and only the values specified in the Custom Redaction Options will be redacted.

Example JSON

[
  {
    "Text": "john@domain.com"
  },
  {
    "Detect": "Bank account number"
  },
  {
    "Regex": "\\b100\\s*(€|\\$)\\b"
  }
]

Try Redact PDF for free!