Documentation Index
Fetch the complete documentation index at: https://docs.formitto.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Create a Formitto account
If you don’t have one yet, sign up at formitto.com and register at least one verified domain (forms and widgets bind to a verified domain).2. Generate an API key
In the dashboard, go to Settings → API keys and click Create key. Give it a name you’ll recognise (e.g. “Zapier production”), then copy the key. New keys are granted read access by default; grant write scopes explicitly if you need them. See Authentication for the scope model.3. Make your first request
List your forms. Pass the key as a Bearer token.Pagination
List endpoints acceptpage (1-based) and limit (default 25, max 100):
Rate limits
Each API key is allowed 1000 requests per hour by default. Every response carries your current budget:| Header | Meaning |
|---|---|
X-RateLimit-Limit | Requests allowed per hour |
X-RateLimit-Remaining | Requests left in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Retry-After header
(seconds to wait). Back off until the window resets, then retry.
Next steps
- Authentication — keys, scopes, and rotation.
- Forms and the other resource guides.
- TypeScript SDK — a typed client instead of raw HTTP.