A REST API and signed webhooks let other systems create agreements, send offers and look up everything signed with a given person or customer. Link each document to your own record IDs and get notified the moment something is signed, declined or about to expire.
Every template you publish is available through the API. Post the values and the party, and NextSigner renders the PDF, sends the signing link and returns the document with its status.
POST /api/v1/documents Authorization: Bearer ns_live_••• { "template": "employment-contract", "external_ref": "crm-contact-48213", "party": { "name": "Maria Fernández", "email": "maria@example.com" }, "values": { "start_date": "2026-10-01", "salary": 4200 } } 201 Created { "status": "sent", "sign_url": "https://nextsigner.com/sign/kX92…" }
When a deal is marked won in your CRM, your integration posts the customer and the agreed values to NextSigner. The customer signs, the webhook fires, and the signed PDF lands back on the deal. No copy and paste, no missing signatures.
API access is included in every plan. Create a workspace, generate a key and send your first document in minutes.