title: Introduction description: Uniforms is a multi-tenant form management platform. This guide covers everything a developer needs to integrate.
Introduction
Uniforms is a form management platform built for agencies that run many client websites. One account owns many workspaces; each workspace is a single client site with its own forms, submissions, contacts, and integrations.
This documentation is for developers integrating forms, submissions, and webhooks into their own applications.
What you can do
- Collect submissions through public form URLs or the Submission API.
- Authenticate with scoped API keys (
sk_live_…). - Receive webhooks signed with HMAC so you can verify every event.
- Manage everything from the dashboard, or programmatically.
Two ways to use a form
- Public link — every published form has a shareable URL at
/f/{formId}. No code required; send the link or open it directly. - Submission API —
POSTJSON to/api/submit/{formId}to collect submissions from your own backend or frontend.
The legacy JavaScript/iframe embed has been retired. Use the public link or the Submission API instead.
Next steps
Start with the Quickstart, then read about Authentication and the Submission API.