---
title: "List forms"
method: GET
path: "/api/reach/v1/profiles/{profileUuid}/forms"
tags: ["Reach: Forms"]
---

# List forms

`GET /api/reach/v1/profiles/{profileUuid}/forms`

Get a paginated list of the signup forms in a profile.

Each form carries a reference to the template that renders it. Get the form details for a
directly usable template URL and for the tags the form puts on the contacts it captures.

## Path parameters

- `profileUuid` string, required

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

Success response

- object
  - `data` ReachV1FormsFormResource[] — Array of [`Reach.V1.Forms.FormResource`](#model/reachv1formsformresource)
    - `uuid` string
    - `name` string
    - `status` 'active' | 'paused' | 'draft' — A `paused` form keeps its template online but stops accepting submissions.
    - `type` 'form'
    - `template` ReachV1FormsFormTemplateResource — The rendered form template. Both fields stay null until the template has been generated.
      - `uuid` string, nullable
      - `path` string, nullable — Storage path of the template HTML, relative to the storage directory of this profile. Get the form details to receive a directly usable URL instead.
    - `created_at` string, date-time
    - `updated_at` string, date-time, nullable
  - `meta` CommonSchemaPaginationMetaSchema
    - `current_page` integer
    - `per_page` integer
    - `total` integer

## Other responses

- `401` — Unauthenticated response
- `500` — Error response

---

[API](https://skmtc.net/hostinger/apis/hostinger-api.md) · [All operations](https://skmtc.net/hostinger/apis/hostinger-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hostinger/hostinger-api/revisions/30deeb9d1e3b/schema)
