> For the complete documentation index, see [llms.txt](https://docs.umbraco.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.umbraco.com/umbraco-forms/editor/creating-a-form/fieldtypes/recaptcha-enterprise.md).

# reCAPTCHA Enterprise

In Umbraco Forms, reCAPTCHA Enterprise comes out of the box.

reCAPTCHA Enterprise allows you to verify if an interaction is legitimate without any user interaction.

## Enabling reCAPTCHA Enterprise

Follow these steps to enable reCAPTCHA Enterprise in Umbraco Forms:

1. Go to the **Forms** section in the backoffice.
2. Find the form that should have **ReCAPTCHA Enterprise** enabled.
3. Add a new question and select **ReCAPTCHA Enterprise with Score** as its answer type.
4. Make sure the field is set as **Mandatory**.
5. Configure reCAPTCHA settings in the `appSettings.json` file to include `SiteKey`, `ApiKey` and `ProjectId`:

```json
"Umbraco": {
    "Forms": {
        "FieldTypes": {
            "RecaptchaEnterprise": {
                "SiteKey": "",
                "ApiKey": "",
                "ProjectId": ""
            }
        }
    }
}
```

You can create your keys by logging into your [reCAPTCHA account](https://www.google.com/recaptcha/).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.umbraco.com/umbraco-forms/editor/creating-a-form/fieldtypes/recaptcha-enterprise.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
