Build with Unlayered API
RESTful API for forms, eSignatures, and workflow automation. Complete with SDKs, webhooks, and detailed examples.
curl https://api.unlayered.com/v1/forms \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Contact Form",
"fields": [
{"type": "text", "label": "Name", "required": true},
{"type": "email", "label": "Email", "required": true}
]
}'API quickstart
Get your API key and make your first request in 5 minutes
Get your API key
Sign up and generate your API key from the dashboard. Keep it secure. It's like a password.
Generate API KeyAuthenticate your requests
Include your API key in the Authorization header as a Bearer token.
Authorization: Bearer YOUR_API_KEY
Make your first request
Try listing your forms. Base URL: https://api.unlayered.com/v1
curl https://api.unlayered.com/v1/forms \ -H "Authorization: Bearer YOUR_API_KEY"
API resources
Complete documentation for all API endpoints
Forms
Create, read, update, and delete forms. Configure fields, validation, conditional logic, and styling.
Submissions
Retrieve form submissions, export data, and manage submission lifecycle.
Documents & Signatures
Send documents for signature, add signers, track status, and download signed documents.
Workflows
Create and manage automated workflows with forms, signatures, and integrations.
Webhooks
Subscribe to real-time events. Get notified when forms are submitted, documents are signed, and more.
Templates
Manage form and document templates. Create reusable templates for common workflows.
API features
Secure Authentication
Bearer token authentication with API keys. Support for OAuth 2.0 coming soon.
Real-time Webhooks
Subscribe to events and get instant notifications when forms are submitted or documents are signed.
RESTful Design
Clean, predictable REST API with JSON payloads and standard HTTP methods.
Pagination & Filtering
Efficient data retrieval with cursor-based pagination and advanced filtering.
Rate Limiting
1000 requests per minute. Rate limit headers included in all responses.
OpenAPI Spec
Complete OpenAPI 3.0 specification. Generate client SDKs automatically.
Start building with Unlayered API
Get your API key and make your first request in minutes