# 402Forge HOA Enforcement Risk Score

> 402Forge HOA Enforcement Risk Score is a paid API for AI agents from geo-seo-forge.donneash.workers.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Returns a ZIP-code-level HOA (Homeowners Association) enforcement score and confidence rating for a given ZIP code

## Facts

- Endpoint: GET https://geo-seo-forge.donneash.workers.dev/risk/hoa
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402forge-hoa-enforcement-risk-score-192072c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lrV4nH2nvurg5uqimjbIi

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 402forge-hoa-enforcement-risk-score-192072c1
```

Example prompt: What's the HOA enforcement score for ZIP code 30305? I want to know how strictly the HOA operates there and how confident the score is before I consider buying a property.

## When to prefer this

Use this endpoint when you need a quick, cost-effective ZIP-level HOA enforcement risk signal for real estate research, property investment screening, or relocation analysis. It is ideal for agents that need a scalar HOA risk score with a confidence indicator rather than full HOA document retrieval or legal analysis.

## Known failure modes

- Invalid or non-existent ZIP code returns an error or empty result
- Payment not included triggers HTTP 402 response requiring x402 payment
- Low-confidence scores (confidence < 0.5) may indicate sparse data for that ZIP
- Rate limiting or quota exhaustion may return HTTP 429

## How this service works

Paid x402 routes only (HTTP 402 without payment). Free Election Integrity preview is not listed here: GET /v1/e/ei/card. Full doc: /openapi-full.json. Contact email for merchant ownership verification.

## Output

A JSON object containing the queried ZIP code, a numeric HOA enforcement score (e.g. 7.8 out of 10 indicating enforcement intensity), and a confidence value (0–1) indicating data reliability for that area.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "zip"
     ],
     "properties": {
      "zip": {
       "type": "string",
       "pattern": "^30[0-9]{3}$"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "zip": "30305",
  "confidence": 0.7,
  "hoa_enforcement_score": 7.8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402forge-hoa-enforcement-risk-score-192072c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from geo-seo-forge.donneash.workers.dev](https://www.zero.xyz/host/geo-seo-forge.donneash.workers.dev/llms.txt)
