Developers
Embed signatures in your product
An embedded, server-to-server API: create envelopes, send them, and pull the signed PDF directly. Secure API keys and signed (HMAC) webhooks on every status change.
Embedded server-to-server
Create envelopes, send for signature and pull the signed PDF - without your user ever leaving your product.
Secure API keys
Keys are stored as hashes only, shown once, and instantly revocable.
Signed (HMAC) webhooks
Reliable notification on every envelope status change - created, sent, viewed, verified, signed, completed.
Full white-label
The portal the recipient sees carries your logo, color and brand. The experience looks entirely yours.
create-envelope.ts
// Create a signature request via the API
const res = await fetch("https://api.docurix.com/v1/envelopes", {
method: "POST",
headers: { Authorization: `Bearer ${DOCURIX_API_KEY}` },
body: JSON.stringify({
document: { url: "https://files.acme.co.il/contract.pdf" },
recipients: [{
name: "Jane Doe",
phone: "+972...",
deliver: "whatsapp",
verify: ["otp", "id_photo", "live_video"],
}],
}),
});
const { envelopeId, signUrl } = await res.json();Want API & Embedded access? It’s part of the Business and Enterprise plans. Talk to us and we’ll get you connected.