Select files from your computer, or just drag and drop into the upload box.
Select the pages you want to extract from the original file. Enter the page number or page range and select “Split PDF”.
Download your split PDF file within seconds.
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 compareWe 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
High performer Spring 2021 by G2 Crowd
Users Love Us on G2
4.9 rating on Capterra
4.9 rating on GetApp
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)'urls':>
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 keyOnce you create your account, click on My Account > API Keys to get your key. This key will allow you to authenticate API requests.