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

# Get form details

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

Get a single form with the URL of its hosted template and the tags it applies to the contacts
it captures.

There is no ready-made embed snippet in the response - either serve the template HTML yourself
or build your own embed around the form uuid.

## Path parameters

- `profileUuid` string, required
- `formUuid` string, required

## Response `200`

Success response

- ReachV1FormsFormDetailsResource
  - `uuid` string
  - `name` string
  - `status` 'active' | 'paused' | 'draft' — A `paused` form keeps its template online but stops accepting submissions.
  - `type` 'form'
  - `template` ReachV1FormsFormTemplateDetailsResource — The rendered form template. There is no ready-made embed snippet - either serve the HTML behind `url` or build your own embed around the form uuid. All 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. `url` already includes that prefix, so prefer it unless you resolve storage paths yourself.
    - `url` string, nullable — Publicly reachable URL of the template HTML.
  - `tags` ReachV1FormsFormTagResource[] — Tags applied to every contact this form captures.
    - `uuid` string
    - `value` string
    - `type` 'form' | 'custom' | 'import' | 'system' — How the tag came about. `custom` covers the tags you create yourself, `import` the ones added by contact imports, and `form` and `system` the ones Reach creates on its own. Every form gets a `form:{name}` tag when it is created.
  - `created_at` string, date-time
  - `updated_at` string, date-time, nullable

## 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)
