The FormHug API lets you manage forms, read submissions, configure webhooks, and submit entries on behalf of your users. It is a JSON REST API hosted atDocumentation Index
Fetch the complete documentation index at: https://formhug.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
https://formhug.com.
Conventions
- Base URL:
https://formhug.com - Request and response keys are
snake_case. - All responses are JSON. Successful responses wrap the payload in a
dataenvelope; paginated lists add apaginationobject. - Errors return a non-2xx status with
{ "error": "...", "error_details": [...] }.error_detailsonly appears for model validation failures.
Successful response
Paginated response
Error response
Resources
| Resource | What it covers |
|---|---|
| Forms | Create, update, list, and delete forms. |
| Folders | Organize forms into folders. |
| Entries | Read submissions (private) and submit to a published form (public). |
| Webhooks | Subscribe to events on a form’s submissions. |
| OAuth | Authorize third-party apps to act on a user’s behalf. |
| Me | Information about the authenticated user. |
Next steps
- Authentication — choose between OAuth tokens and Personal Access Tokens, understand scopes.