Loading...
Loading...
From zero to your first signed document in just a few lines of code.
Install the official SignQuick SDK via npm, yarn, or pnpm.
npm install @signquick/sdkGo to Settings → API Keys in your dashboard. Create a test key for development.
sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxUpload a PDF and send it for signing with just a few lines of code.
import { SignQuick } from '@signquick/sdk';
const sq = new SignQuick('sq__your_api_key');
// Upload and sign a document
const doc = await sq.documents.create({
file: './contract.pdf',
signers: [{ email: '[email protected]', name: 'John Doe' }],
});
console.log('Signing URL:', doc.signingUrl);Use test keys for development, then switch to live keys when you're ready for production.