Returns a list of all forms that belong to the authenticated account.
Each item in the returned array contains the form's unique identifier (_id) and its title. Use _id with the GET /form/{id} endpoint to retrieve the full structure of a specific form including questions, design, and settings.
Forms are returned regardless of their visibility state (public, unlisted, or private) as long as they belong to the authenticated user and are not in the trash or archived.
Security
BearerAuth or ApiKeyAuth
- Mock serverhttps://developers.forms.app/_mock/apis/v1/form
- https://api.forms.apphttps://api.forms.app/v1/form
- BearerAuth
- ApiKeyAuth
curl -i -X GET \
https://developers.forms.app/_mock/apis/v1/form \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "success": true, "data": [ { … } ], "errors": [] }