The others charge extra for the CRM you already own. On SignFlow Team, everything below is turned on the moment your workspace is created — no upgrade, no add-on checkbox, no sales call.
Same endpoints power our web app, HubSpot sidebar, and Salesforce Lightning component. If it’s in the product, it’s in the API.
// Send an agreement in 6 lines
import SignFlow from "@salescollab/handshake";
const hs = new SignFlow({ apiKey: process.env.HS_KEY });
await hs.agreements.send({
templateId: "tpl_starter_msa",
signer: { email: "jane@acme.com", locale: "en-GB" },
variables: { amount: 4500, currency: "GBP" },
});