# HALOWERK Europe Land – Local Relief Range (1,000 m Buffer)

> HALOWERK Europe Land – Local Relief Range (1,000 m Buffer) 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).

Returns the difference between maximum and minimum surface elevation (local relief range) within a 1,000-metre circular neighbourhood around a given European coordinate.

## Facts

- Endpoint: POST https://euroland.halowerk.com/v1/europe-local-relief-buffer-1000m
- 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-local-relief-range-1-000-m-buffer-894485d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PnJ8bmib8pDGLu4PsR8UZ

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-local-relief-range-1-000-m-buffer-894485d3 -d '<json body>'
```

Example prompt: What is the local relief range — the difference between the highest and lowest elevation — within 1 kilometre of latitude 48.8566, longitude 2.3522 in Europe?

## When to prefer this

Choose this endpoint when you need a quick, standardised measure of terrain roughness or topographic variability at a single point in Europe using a 1,000-metre analysis radius. It is ideal for site assessment, land suitability screening, or environmental modelling workflows where a circular neighbourhood analysis is appropriate. Use the 60-metre buffer sibling endpoint instead when fine-grained, highly localised relief is required.

## Known failure modes

- Coordinate outside European coverage bounds (latitude 34–72.5, longitude −31.5–40.5) returns an error or null result
- Missing latitude or longitude parameter causes a validation error
- Coastal or border coordinates may fall partially outside covered land area, potentially reducing sample quality
- Payment failure (x402 protocol) blocks the request before computation

## How this service works

Difference between maximum and minimum sampled surface elevation. The service evaluates a circular 1,000 metre neighborhood around one coordinate and returns standardized units across all 30 covered countries.

## Output

A single numeric value representing the difference (in standardised elevation units, typically metres) between the maximum and minimum sampled surface elevation within a 1,000-metre circular buffer around the supplied WGS84 coordinate, covering up to 30 European countries.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": "number",
   "maximum": 72.5,
   "minimum": 34,
   "description": "WGS84 latitude inside the published European coverage."
  },
  "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-europe-land-local-relief-range-1-000-m-buffer-894485d3/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)
