# Formwerk Network Request Form Count Checker

> Formwerk Network Request Form Count Checker is a paid API for AI agents from formwerk.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Analyzes a network request object from a given URL to detect and report the number of HTML forms contained within it.

## Facts

- Endpoint: POST https://formwerk.halowerk.com/v1/pruef/formwerk/formularzahl/netzwerkanfrage
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/formwerk-network-request-form-count-checker-6975df12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3Xrx5gLZLojvOQBhNeZZ0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability formwerk-network-request-form-count-checker-6975df12 -d '<json body>'
```

Example prompt: How many HTML forms are there on https://example.com/signup? Fetch the page and count all the forms present in the network request.

## When to prefer this

Use this endpoint when you specifically need to count the number of HTML forms present in a network request for a given URL, as part of web auditing, quality assurance, competitive analysis, or form structure monitoring. Prefer this over general scraping tools when you need a focused, lightweight check on form count rather than full page content extraction.

## Known failure modes

- URL is unreachable or returns a non-2xx HTTP status
- URL is not publicly accessible (private network, authentication required)
- Malformed or invalid URL provided
- CSS selector matches zero elements
- No forms found returns a count of zero rather than an error
- Request timeout for slow-loading pages

## How this service works

Prüft am Objekt netzwerkanfrage den Befund Zahl enthaltener Formulare.

## Output

Returns the count (number) of HTML forms found within the network request object for the given URL. The result is a numeric finding indicating how many form elements were detected.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ziel": {
   "oneOf": [
    {
     "type": "string",
     "maxLength": 2048,
     "minLength": 1,
     "description": "Öffentliche HTTP(S)-Adresse; bei DNS-Befunden Domain oder öffentliche IP."
    },
    {
     "type": "object",
     "required": [
      "adresse"
     ],
     "properties": {
      "adresse": {
       "type": "string",
       "maxLength": 2048,
       "minLength": 1
      },
      "selektor": {
       "type": "string",
       "maxLength": 240,
       "minLength": 1,
       "description": "CSS-Selektor: genau ein Objekt, sonst erster Treffer des Objektfilters."
      },
      "vergleich": {
       "type": "string",
       "maxLength": 2048,
       "description": "Öffentliche Vergleichsadresse für Link-, Sitemap- oder Sprachbefunde."
      },
      "user_agent": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_-]{1,80}$"
      },
      "dkim_selektor": {
       "type": "string",
       "pattern": "^[A-Za-z0-9_-]{1,63}$"
      }
     },
     "additionalProperties": false
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/formwerk-network-request-form-count-checker-6975df12/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from formwerk.halowerk.com](https://www.zero.xyz/host/formwerk.halowerk.com/llms.txt)
