> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Saved Forms

> List saved signup forms and their public action URLs

List the saved forms that belong to your selected workspace. Each result
includes its server-managed audience settings and client-safe public action.

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/forms" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "companyId": "company_123",
    "forms": [
      {
        "id": "form_123",
        "name": "Blog newsletter",
        "status": "published",
        "settings": {
          "listMode": "specific",
          "listIds": ["list_123"],
          "tagIds": [],
          "duplicateStrategy": "skip"
        },
        "actionUrl": "https://api.sequenzy.com/api/v1/forms/form_123"
      }
    ]
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Missing API key. Provide via x-api-key header or Authorization: Bearer <key>"
  }
  ```

  ```json 403 theme={null}
  { "error": "API key is missing required scope: widgets:read" }
  ```
</ResponseExample>
