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.
# No SDK needed — the API is plain REST (use fetch/curl).
# To drive it from an AI agent (Claude Code, Cursor), add the MCP:
npx -y @signquick/mcpGo to Settings → API Keys in your dashboard. Create a test key for development.
sq_xxxxxxxxxxxxxxxxxxxxxxxxxUpload a PDF and send it for signing with just a few lines of code.
// Send an existing document for signature.
// (Upload it first at signquick.app; list ids via GET /api/v1/documents.)
const res = await fetch('https://signquick.app/api/v1/signatures', {
method: 'POST',
headers: {
Authorization: 'Bearer sq_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
document_id: 'doc_abc123',
title: 'Contract',
signers: [{ name: 'John Doe', email: '[email protected]' }],
}),
});
const { signing_request } = await res.json();
console.log('Signing request:', signing_request);Use test keys for development, then switch to live keys when you're ready for production.