# HALOWERK Europe Land – Maximum Slope (Parcel Polygon)

> HALOWERK Europe Land – Maximum Slope (Parcel Polygon) is a paid API for AI agents from euroland.halowerk.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Computes the maximum adjacent-cell surface gradient (steepest slope) across a user-supplied WGS84 polygon parcel within Europe, returning a standardized value across 30 covered countries.

## Facts

- Endpoint: POST https://euroland.halowerk.com/v1/europe-max-slope-parcel
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-europe-land-maximum-slope-parcel-polygon-49e8a012
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hpX-6QJMFK6fprTACfQ9O

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-europe-land-maximum-slope-parcel-polygon-49e8a012 -d '<json body>'
```

Example prompt: What's the maximum slope across this land parcel I'm looking at in the Netherlands? The polygon vertices are [4.85, 52.37], [4.86, 52.37], [4.86, 52.38], [4.85, 52.38].

## When to prefer this

Choose this endpoint when you need the steepest terrain gradient within an arbitrarily shaped land parcel (polygon) rather than a fixed-radius circular buffer or point sample. It is ideal for due-diligence workflows, construction feasibility, agricultural suitability, or renewable energy site assessment across any of the 30 covered European countries, and when you need a single worst-case slope value rather than a mean or distribution.

## Known failure modes

- Polygon spans more than 0.25 degrees — request rejected with validation error
- Fewer than 3 coordinate pairs supplied — invalid polygon error
- Coordinates fall outside the European coverage extent (lon: −31.5 to 40.5, lat: 34 to 72.5) — out-of-coverage error
- Malformed coordinate array structure — schema validation error
- Network timeout or service unavailability — 5xx error response

## How this service works

Maximum adjacent-cell surface gradient across the analysis grid. The service evaluates the bounded polygon supplied by the caller and returns standardized units across all 30 covered countries.

## Output

A single standardized numeric value representing the maximum adjacent-cell surface gradient (steepest slope) found within the submitted polygon parcel, expressed in consistent units across all 30 covered European countries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "polygon": {
   "type": "array",
   "items": {
    "type": "array",
    "items": [
     {
      "type": "number",
      "maximum": 40.5,
      "minimum": -31.5
     },
     {
      "type": "number",
      "maximum": 72.5,
      "minimum": 34
     }
    ],
    "maxItems": 2,
    "minItems": 2,
    "additionalItems": false
   },
   "maxItems": 100,
   "minItems": 3,
   "description": "WGS84 polygon ring. The closing coordinate is optional; maximum span is 0.25 degrees."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-europe-land-maximum-slope-parcel-polygon-49e8a012/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from euroland.halowerk.com](https://www.zero.xyz/host/euroland.halowerk.com/llms.txt)
