Quickstart Guide
Get Started in 5 Minutes
From zero to your first signed document in just a few lines of code.
1
Install the SDK
Install the official SignQuick SDK via npm, yarn, or pnpm.
Terminal
npm install @signquick/sdk2
Get Your API Key
Go to Settings → API Keys in your dashboard. Create a test key for development.
sk_test_xxxxxxxxxxxxxxxxxxxxxxxxx3
Send Your First Document
Upload a PDF and send it for signing with just a few lines of code.
JavaScript
import { SignQuick } from '@signquick/sdk';
const sq = new SignQuick('sk_live_your_api_key');
// Upload and sign a document
const doc = await sq.documents.create({
file: './contract.pdf',
signers: [{ email: 'john@example.com', name: 'John Doe' }],
});
console.log('Signing URL:', doc.signingUrl);4
Test & Go Live
Use test keys for development, then switch to live keys when you're ready for production.