# HALOWERK Land Dossiers – Wind Farm Terrain Screening

> HALOWERK Land Dossiers – Wind Farm Terrain Screening is a paid API for AI agents from landdossier.halowerk.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns a terrain-priority evidence score and six terrain measurements to support wind farm site screening decisions at a given European coordinate.

## Facts

- Endpoint: POST https://landdossier.halowerk.com/v1/dossier-wind-farm-terrain-first
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-land-dossiers-wind-farm-terrain-screening-97f0037d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p3sIAq3YFdqs2xcw_z5Gn

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 halowerk-land-dossiers-wind-farm-terrain-screening-97f0037d -d '<json body>'
```

Example prompt: Run a HALOWERK wind farm terrain dossier for the coordinates 55.3°N, 8.7°E with a 500-metre radius and give me the terrain-priority evidence score and the six terrain measurements.

## When to prefer this

Choose this endpoint when you need a fast, deterministic, cost-effective terrain evidence score for wind farm site screening in Europe — particularly during early-stage shortlisting before commissioning expensive physical surveys. It is purpose-built for wind farm terrain assessment and produces a comparable, reproducible score, making it well-suited for multi-site portfolio screening or automated pipelines. Prefer alternatives if you need solar, housing, or other development-type dossiers (covered by sibling endpoints), or if you require planning permission guidance, legal determinations, or valuations.

## Known failure modes

- Coordinates outside European coverage bounds (latitude 34–72.5°N, longitude -31.5–40.5°E) return a validation error
- radius_m below 50 or above 2000 returns an out-of-range error
- Malformed or missing latitude/longitude fields return a 400 bad request
- Payment failure via x402 protocol returns a 402 payment required response
- Service unavailability returns a 503 or timeout error

## How this service works

Decision-support dossier for wind farm terrain screening using six disclosed measurements and a deterministic terrain-priority evidence score. It is screening evidence, not a permit, valuation or legal determination.

## Output

A structured decision-support dossier containing a deterministic terrain-priority evidence score and six disclosed terrain measurements for the specified coordinate and radius. The result is screening evidence only — it is not a permit, valuation, or legal determination regarding wind farm development suitability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": "number",
   "maximum": 72.5,
   "minimum": 34,
   "description": "WGS84 latitude inside the published European coverage."
  },
  "radius_m": {
   "type": "integer",
   "default": 250,
   "maximum": 2000,
   "minimum": 50
  },
  "longitude": {
   "type": "number",
   "maximum": 40.5,
   "minimum": -31.5,
   "description": "WGS84 longitude inside the published European coverage."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-land-dossiers-wind-farm-terrain-screening-97f0037d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from landdossier.halowerk.com](https://www.zero.xyz/host/landdossier.halowerk.com/llms.txt)
