Home Enterprise Pricing Developers Demo Blog Contact My Account
Verify Protect

Get Your API Key

Start protecting documents in minutes. No credit card required.

Something went wrong. Please try again.
We never share your information.

Already have an account? Log in

Your API Key is Ready!

You're all set. Use this key to authenticate your API requests.

API Key
Organization ID
Save this key — it won't be shown again. Store it securely in your application's environment variables.
Quick Start
// Protect a document with Vertifile
const form = new FormData();
form.append('file', fileBuffer);

const res = await fetch('https://vertifile.com/api/create-pvf', {
  method: 'POST',
  headers: { 'X-API-Key': 'YOUR_API_KEY' },
  body: form
});

const pvfFile = await res.blob();