Link Search Menu Expand Document

JavaScript - Generate Secure URL for Upload

Upload Files sample in Generate Secure URL for Upload demonstrating ‘JavaScript’

GenerateSecureUrlForUpload.js
var request = require('request');
var options = {
  'method': 'GET',
  'url': 'https://api.pdf.co/v1/file/upload/get-presigned-url?name=test.pdf&encrypt=true',
  'headers': {
    'x-api-key': '{{x-api-key}}'
  },
  formData: {

  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

PDF.co Web API: the Web API with a set of tools for documents manipulation, data conversion, data extraction, splitting and merging of documents. Includes image recognition, built-in OCR, barcode generation and barcode decoders to decode bar codes from scans, pictures and pdf.

Get your PDF.co API key here!

Download Source Code (.zip)

return to the previous page explore Upload Files endpoint