signbee

Send documents for e-signing via a single API call. NDAs, contracts, and agreements — signed by both parties with a tamper-proof SHA-256 certificate. Built for AI agents.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "signbee" with this command: npx skills add signbee/skill

Signbee

Send documents for e-signing in one API call. NDAs, contracts, agreements — your agent writes the markdown, Signbee handles the rest.

To install or update: npx skills add signbee/skill --skill signbee -g

How it works

  1. Your agent calls POST https://signb.ee/api/v1/send with markdown content and party details
  2. Signbee converts it to a professional PDF
  3. Both parties sign via email (sender verifies first, then recipient)
  4. Everyone gets the fully signed PDF with a SHA-256 signing certificate

No API key is required. Sender verification happens via email OTP.

Quick start

Send a document right now — no account needed:

curl -X POST https://signb.ee/api/v1/send \
  -H "Content-Type: application/json" \
  -d '{
    "markdown": "# Mutual NDA\n\nThis Non-Disclosure Agreement is entered into by the undersigned parties.\n\n## Terms\n\n1. Both parties agree to keep all shared information strictly confidential.\n2. This agreement remains in effect for 2 years from the date of signing.\n3. Neither party shall disclose proprietary information without written consent.",
    "sender_name": "Alice Chen",
    "sender_email": "alice@startup.com",
    "recipient_name": "Bob Smith",
    "recipient_email": "bob@acme.com"
  }'

API reference

POST https://signb.ee/api/v1/send

Required fields:

FieldTypeDescription
markdownstringDocument content in markdown (min 10 chars, max 50KB)
sender_namestringFull name of the sender
sender_emailstringEmail address of the sender
recipient_namestringFull name of the recipient
recipient_emailstringEmail address of the recipient

Optional fields:

FieldTypeDescription
titlestringDocument title (auto-extracted from first # heading if omitted)
pdf_urlstringURL to an existing PDF (skips markdown conversion)
expires_in_daysnumberDays until the signing link expires (default: 7)

Response:

{
  "document_id": "cmm...",
  "status": "pending_sender",
  "message": "Verification email sent to alice@startup.com. Complete setup to send the document."
}

Authentication (optional)

For instant sending without email verification, use an API key:

Authorization: Bearer <api_key>

Get one free at https://signb.ee/dashboard. With an API key, the sender is pre-verified and the recipient gets the signing email immediately.

Response with API key:

{
  "document_id": "cmm...",
  "status": "pending_recipient",
  "sender": "Alice Chen",
  "recipient": "Bob Smith",
  "expires_at": "2026-03-19T12:00:00.000Z"
}

Markdown tips

Your document markdown supports:

  • Headings (#, ##, ###) — the first # heading becomes the document title
  • Lists (numbered and bulleted)
  • Tables for structured terms
  • Bold/italic for emphasis
  • Blockquotes for callouts

What the user sees

After you call the API:

  1. Sender receives an email with OTP → verifies identity → chooses signature style → signs
  2. Recipient receives an email with a signing link → reviews the document (sees sender's signature) → signs
  3. Both receive the final signed PDF with a tamper-proof SHA-256 signing certificate via email

Plan limits

  • Free: 5 documents/month
  • Pro ($9/mo): 100 documents/month
  • Business ($19/mo): Unlimited

Upgrade at https://signb.ee/dashboard

More info

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

kenoodl-synthesis

kenoodl is an orthogonal injection engine — it synthesizes patterns from domains outside your agent's training data and maps them onto whatever problem it's...

Registry SourceRecently Updated
3942Profile unavailable
Automation

Wick Arena Agentic Trading Competition

Compete in a simulated $100K trading arena with real market data, trading perpetual futures and prediction markets under prop-firm risk rules and real-time s...

Registry SourceRecently Updated
1.1K2Profile unavailable
Automation

Moodle Web Services Skill

Integrate with Moodle 4.x via REST Web Services to create courses, manage enrollments, activities, grades, and list courses or students.

Registry SourceRecently Updated
4760Profile unavailable
Automation

agent-teams-playbook

No summary provided by upstream source.

Repository SourceNeeds Review