# Verifying reCAPTCHA on the Backend

## Step 5 - Backend Verification

The **SSK Form Component** handles backend reCAPTCHA token verification through server actions. When the form is submitted, the reCAPTCHA token is sent to the backend, where it's validated automatically.

To verify the token, ensure your backend environment has the necessary reCAPTCHA keys configured. You will need to call the `verifyRecaptcha` function within your server action handling the form submission, like this:

```typescript
await verifyRecaptcha(formData.get('token'))
```

This function securely processes and validates the token, ensuring that the submission meets reCAPTCHA's security criteria.


---

# Agent Instructions: 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.startupstarterkits.com/ssk-pro-features/index-2/chapter-3.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.
