# HALOWERK Land Compare – Multi-Site Depression Depth Ranking

> HALOWERK Land Compare – Multi-Site Depression Depth Ranking is a paid API for AI agents from landvergleich.halowerk.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Measures local depression depth for two to ten named European sites and returns a ranked list with ties preserved.

## Facts

- Endpoint: POST https://landvergleich.halowerk.com/v1/rank-sites-depression-depth
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-land-compare-multi-site-depression-depth-ranking-6e009198
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3bJ-kh1lYuk1iEOzPPFS2

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-compare-multi-site-depression-depth-ranking-6e009198 -d '<json body>'
```

Example prompt: Rank these five European sites by local depression depth for me — Paris (48.8566, 2.3522), Madrid (40.4168, -3.7038), Rome (41.9028, 12.4964), Warsaw (52.2297, 21.0122), and Budapest (47.4979, 19.0402) — and make sure ties are kept together in the ranking.

## When to prefer this

Use this endpoint when you need to compare depression depth across more than two European sites simultaneously and want a ranked output with ties preserved. For a simple two-site signed difference, use the sibling two-site depression depth comparison endpoint instead. Choose this ranking endpoint when selecting among multiple candidate land parcels or when a prioritized ordering of sites is needed rather than a pairwise delta.

## Known failure modes

- Coordinates outside European coverage bounds (lat 34–72.5, lon -31.5–40.5) result in validation error
- Fewer than 2 or more than 10 locations triggers schema validation failure
- Missing required latitude or longitude fields returns a 400 error
- Site name exceeding 60 characters rejected
- Payment failure or insufficient USDC balance prevents request processing

## How this service works

Measures local depression depth for two to ten named European sites and ranks the observed values with ties preserved.

## Output

A ranked list of the submitted named European sites ordered by their measured local depression depth values, with rank positions assigned and ties preserved — allowing direct identification of the deepest and shallowest depressions across the input set.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "locations": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "longitude",
     "latitude"
    ],
    "properties": {
     "name": {
      "type": "string",
      "maxLength": 60,
      "minLength": 1
     },
     "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."
     }
    },
    "additionalProperties": false
   },
   "maxItems": 10,
   "minItems": 2
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-land-compare-multi-site-depression-depth-ranking-6e009198/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from landvergleich.halowerk.com](https://www.zero.xyz/host/landvergleich.halowerk.com/llms.txt)
