Split PDF

Select files from your computer, or just drag and drop into the upload box.

Select PDF pages to extract

Select the pages you want to extract from the original file. Enter the page number or page range and select “Split PDF”.

Download Split PDF

Download your split PDF file within seconds.

Try Nanonets Workflows for Split PDF

Automatically sync data into other business applications. No code, no complex migrations. PDF Split & Email Automation

Automate PDF Management

Efficient File Conversion & Sharing

Enhanced Link Management

Automate Document Conversion

CRM Document Automation Split PDF files on autopilot with Nanonets

Stop working with large files. Use Nanonets to extract PDF pages you need using no-code workflows. So, are you ready to get started?

10M+ processed 8M+ processed Purchase Orders 11,22,400 processed Real Estate Docs 5M+ processed Bank Statements 5M+ processed Bill of Lading 4M+ processed Tables / SKU 3M+ processed How we compare

Why users love Nanonets' Split PDF Tool?

Traditional OCR Tools Data Formatting High savings Nil or low training data

grey cross

grey cross

High training data

grey cross

grey cross

grey cross

High training data

grey cross

Split PDF using automated workflows Amount of training data needed Self-learning AI No Template setup required IT / API friendly Multiple export options Cost and Time Savings

Per Defalvadigital engine

digital engine

We are impressed with the intelligence in the product when it comes to data extraction. This opens up for many new areas where we can help our customers, like detection of fraud. We have been having a tight and transparent dialogue with Nanonets. Our customers are very pleased with the product as well as the technical support we together with Nanonets have been able to provide.

Founder, DigitalEngine (Sweden), ex-CIO PwC Sweden

we’re trusted by Developers across the world

High performer Spring 2021 by G2 Crowd

Users Love Us on G2

4.9 rating on Capterra

4.9 rating on GetApp

Integrate in less than 30 seconds

Easy to integrate Split PDF API

Copy integration code

Browse libraries for different programming languages and mobile platforms.

Choose your language

import requests import base64 url = "https://app.nanonets.com/api/v2/OCR/FullText" payload= <'urls': ['MY_IMAGE_URL']>files=[ ('file',('FILE_NAME',open('FILE_PATH','rb'),'application/pdf')) ] headers = <> response = requests.request("POST", url, headers=headers, data=payload, files=files, auth=requests.auth.HTTPBasicAuth('REPLACE_API_KEY', '')) print(response.text)

var client = new RestClient("https://app.nanonets.com/api/v2/OCR/FullText"); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("Authorization", "Basic " + Convert.ToBase64String(Encoding.Default.GetBytes("REPLACE_YOUR_API_KEY:"))); request.AddFile("file", "FILE_PATH"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);

curl --location --request POST 'https://app.nanonets.com/api/v2/OCR/FullText' \ -u 'REPLACE_API_KEY:' \ --form 'file=@"FILE_PATH"'

Go to API Documentation

Run in Postman Get your free API key

Once you create your account, click on My Account > API Keys to get your key. This key will allow you to authenticate API requests.