SignPaw API Documentation
Welcome to the SignPaw API documentation. This API allows you to programmatically create, manage, and send documents for electronic signature.
API Base URL
All API requests should be made to:
https://app.signpaw.com
Authentication
All API requests require authentication using an API token. Include your token in the X-Auth-Token header:
curl https://app.signpaw.com/api/templates \
-H "X-Auth-Token: YOUR_API_TOKEN"
Getting Your API Token
- Log in to your SignPaw account at https://app.signpaw.com
- Navigate to Settings → API
- Copy your API token
Rate Limits
- 100 requests per minute per API token
- 1000 requests per hour per API token
Quick Start
1. List Templates
curl https://app.signpaw.com/api/templates \
-H "X-Auth-Token: YOUR_API_TOKEN"
2. Create a Submission
curl -X POST https://app.signpaw.com/api/submissions \
-H "X-Auth-Token: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"template_id": 1000001,
"send_email": true,
"submitters": [{
"role": "First Party",
"email": "signer@example.com"
}]
}'
Support
- Email: support@signpaw.com
- Documentation: https://api.signpaw.com
- Dashboard: https://app.signpaw.com
SDKs & Libraries
Choose your preferred programming language from the sidebar to see code examples.