zapsign

Create signature documents, manage signers, and track status via the ZapSign API.

76|18|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/vm0-ai/vm0-skills --skill zapsign
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: zapsign
Source: https://github.com/vm0-ai/vm0-skills/tree/main/zapsign
Command: npx skills add https://github.com/vm0-ai/vm0-skills --skill zapsign

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables creating and managing electronic signatures, signers, and tracking status via ZapSign's API.

Core Features & Use Cases

  • Create documents for signatures
  • Add signers with various authentication methods
  • Track signing status and retrieve signed files

Quick Start

curl -s -X POST "https://sandbox.api.zapsign.com.br/api/v1/docs/" -H "Authorization: Bearer ${ZAPSIGN_API_TOKEN}" -H "Content-Type: application/json" -d '{"name": "Service Agreement","signers":[{"name": "Client","email": "[email protected]"}]}' | jq .

Frequently Asked Questions about zapsign

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate electronic signature workflows with an API?

Electronic signature automation creates documents, assigns signers, and tracks signing status through API calls. ZapSign provides REST endpoints for document creation, signer management, and status retrieval using curl-based requests with token authentication, supporting sandbox and production environments.

Can I create signing documents from PDF, base64, or Markdown files?

Yes. ZapSign accepts multiple input formats—public PDFs, base64-encoded content, and Markdown—converting them to signature-ready documents. You specify the input format in the API request and assign signers with various authentication methods.

How do I track document signing status and retrieve signed files?

Tracking uses ZapSign API endpoints that return signer status, completion timestamps, and download links for signed documents. Status queries return tokens and signer URLs, enabling you to monitor progress and fetch completed files without manual intervention.

What authentication and configuration options does ZapSign support?

ZapSign supports Bearer token authentication via API headers and offers configurable signing order, expiration dates, and notification settings. Endpoints work across sandbox and production environments, adapting signer authentication methods to your workflow requirements.

Do I need special tools to work with ZapSign's API?

ZapSign uses standard curl-based REST calls with JSON payloads, so you need only curl, an API token, and HTTP access. No specialized SDKs or frameworks are required; requests run from any command-line environment with basic authentication headers.