How to split PDFs using JavaScript

Table of contents

    Automate PDF splitting in JavaScript workflows for logical document archiving. This tutorial demonstrates dividing PDFs programmatically using Node.js and Nutrient DWS Processor API.
    How to split PDFs using JavaScript
    Summary

    Split PDF documents using our split PDF JavaScript API. Create a free account, get API credentials, and implement splitting using Node.js with axios and form-data. Combine with 30+ other API tools for document processing workflows.

    In this post, you’ll learn how to split PDF files using a split PDF JavaScript API. With our API, you receive 200 credits with the free plan. Different operations on a document consume different amounts of credits, so the number of PDF documents you can generate may vary. All you need to do is create a free account(opens in a new tab) to get access to your API key.

    Splitting a PDF document is a common use case when working with PDFs and PDF forms because it enables logical archiving of information. Using a PDF splitting API will enable you to automate the process of splitting documents in your workflow.

    A simple example would be a financial services company receiving a single PDF with clients’ personal and financial information, as well as a questionnaire they filled in. By integrating a PDF splitting API into the workflow, it’s easy to automatically split documents into logical parts that can be stored separately.

    Nutrient DWS Processor API

    Document splitting is just one of our 30+ PDF API tools. You can combine our splitting tool with other tools to create complex document processing workflows, such as:

    • Converting MS Office files and images into PDFs and splitting them
    • Performing OCR on documents and splitting them
    • Watermarking and flattening PDFs and splitting them

    Step 1 — Creating a free account on Nutrient

    Go to our website(opens in a new tab), where you’ll see the page below, prompting you to create your free account.

    Free account Nutrient DWS Processor API

    Once you’ve created your account, you’ll be welcomed by a page showing an overview of your plan details.

    You’ll start with 200 credits to process, and you’ll be able to access all our PDF API tools.

    Step 2 — Obtaining the API key

    After you’ve verified your email, you can get your API key from the dashboard. In the menu on the left, click API keys. You’ll see the following page, which is an overview of your keys.

    Split PDFs Python API Key

    Copy the Live API key, because you’ll need this for the split PDF API.

    Step 3 — Setting up folders and files

    Now, create a folder called split_pdf and open it in a code editor. For this tutorial, you’ll use VS Code as your primary code editor. Next, create two folders inside split_pdf and name them input_documents and processed_documents. Now, copy your PDF to the input_documents folder and rename it to document.pdf.

    Then, in the root folder, split_pdf, create a file called processor.js. This is the file where you’ll keep your code.

    Your folder structure will look like this:

    split_pdf
    ├── input_documents
    ├── processed_documents
    └── processor.js

    Step 4 — Installing dependencies

    You first need to install the dependencies below:

    Use the command below to install both of them:

    npm install axios
    npm install form-data

    Step 5 — Writing the code

    Now, open the processor.js file and paste the code below into it:

    const axios = require('axios');
    const FormData = require('form-data');
    const fs = require('fs');
    (async () => {
    const firstHalf = new FormData();
    firstHalf.append(
    'instructions',
    JSON.stringify({
    parts: [
    {
    file: 'document',
    pages: {
    end: -6,
    },
    },
    ],
    }),
    );
    firstHalf.append(
    'document',
    fs.createReadStream('input_documents/document.pdf'),
    );
    const secondHalf = new FormData();
    secondHalf.append(
    'instructions',
    JSON.stringify({
    parts: [
    {
    file: 'document',
    pages: {
    start: -5,
    },
    },
    ],
    }),
    );
    secondHalf.append(
    'document',
    fs.createReadStream('input_documents/document.pdf'),
    );
    await executeRequest(
    firstHalf,
    'processed_documents/first_half.pdf',
    );
    await executeRequest(
    secondHalf,
    'processed_documents/second_half.pdf',
    );
    })();
    async function executeRequest(formData, outputFile) {
    try {
    const response = await axios.post(
    'https://api.nutrient.io/build',
    formData,
    {
    headers: formData.getHeaders({
    Authorization: 'Bearer YOUR_API_KEY_HERE',
    }),
    responseType: 'stream',
    },
    );
    response.data.pipe(fs.createWriteStream(outputFile));
    } catch (e) {
    const errorString = await streamToString(e.response.data);
    console.log(errorString);
    }
    }
    function streamToString(stream) {
    const chunks = [];
    return new Promise((resolve, reject) => {
    stream.on('data', (chunk) => chunks.push(Buffer.from(chunk)));
    stream.on('error', (err) => reject(err));
    stream.on('end', () =>
    resolve(Buffer.concat(chunks).toString('utf8')),
    );
    });
    }

    Make sure to replace YOUR_API_KEY_HERE with your API key.

    Code explanation

    Here you have two form variables: firstHalf and secondHalf. After passing instructions to each of them, you used createReadStream to read the input PDF file. You also have a function, executeRequest, that makes the POST request to the Split PDF API.

    You have to pass both form-data variables to split the PDF into two parts. The response of the API is stored in the folder called processed_documents.

    Output

    To execute the code, run the command below:

    Terminal window
    node processor.js

    On successful execution, it’ll create two files in the processed_documents folder: first_half.pdf and second_half.pdf. The folder structure will look like this:

    split_pdf
    ├── input_documents
    ├── processed_documents
    | └──first_half.pdf
    | └──second_half.pdf
    └── processor.js

    Additional resources

    Explore more ways to work with Nutrient API:

    Conclusion

    In this post, you learned how to split PDF files for your JavaScript application using our split PDF API.

    You can integrate these functions into your existing applications and split PDFs. With the same API token, you can also perform other operations, such as merging documents into a single PDF, adding watermarks, and more. To get started with a free trial, sign up(opens in a new tab) here.

    FAQ

    What else can I do with Nutrient DWS Processor API besides splitting PDFs?

    Nutrient DWS Processor API offers 30+ PDF operations including merging, watermarking, OCR, flattening, and converting Office documents to PDF. You can combine these operations in a single workflow. For example, split a PDF, watermark each part, and then merge specific sections back together — all through the same API.

    Can I test the API without writing code first?

    Yes! Use our Postman collection to test all API endpoints directly in Postman. Import the collection, add your API key, and experiment with different operations and parameters. This helps you understand the API before integrating it into your JavaScript application. You can also test using cURL in your terminal.

    How can I automate PDF workflows without coding?

    Use our Zapier integration to automate PDF processing without writing code. Connect Nutrient DWS Processor API with 5,000+ apps like Google Drive, Dropbox, Gmail, and Slack. For example, automatically split PDFs when they’re uploaded to Google Drive, or split invoices from email attachments and save them to separate folders.

    How do I split a PDF into individual pages?

    Make separate API calls for each page you want to extract. For a single page, specify {pages: {start: 1, end: 1}} in the instructions. To extract pages 1, 3, and 5 as separate files, make three individual API calls with different output filenames. Use a loop to automate this process and save each page with a numbered filename.

    What do negative page numbers mean in the API?

    Negative page numbers count from the end of the document. -1 is the last page, -2 is the second-to-last page, and so on. In the example code, {end: -6} gets all pages except the last 5 pages, while {start: -5} gets only the last 5 pages. This is useful when you don’t know the total page count.

    Jonathan D. Rhyne

    Jonathan D. Rhyne

    Co-Founder and CEO

    Jonathan joined PSPDFKit in 2014. As Co-founder and CEO, Jonathan defines the company’s vision and strategic goals, bolsters the team culture, and steers product direction. When he’s not working, he enjoys being a dad, photography, and soccer.

    Explore related topics

    FREE TRIAL Ready to get started?