# HALOWERK Europe Land – Dominant Land Cover Class (Point)

> HALOWERK Europe Land – Dominant Land Cover Class (Point) is a paid API for AI agents from euroland.halowerk.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns the dominant ESA WorldCover 2021 land cover class for a 60-metre analysis grid around a given coordinate in Europe.

## Facts

- Endpoint: POST https://euroland.halowerk.com/v1/europe-landcover-class-point
- Price: $0.003/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-dominant-land-cover-class-point-038288ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W2BgYkZsu2BSoYcSHVwCH

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-dominant-land-cover-class-point-038288ea -d '<json body>'
```

Example prompt: What's the dominant land cover class at latitude 48.85, longitude 2.35 in Europe — like is it urban, forest, cropland, or something else?

## When to prefer this

Choose this endpoint when you need a fast, single-point land cover classification within Europe using the authoritative ESA WorldCover 2021 dataset. It is ideal for site suitability checks, environmental baseline assessments, and property due diligence where a 60-metre resolution is sufficient. Prefer it over polygon-based siblings when you only have a single coordinate and do not need fractional class shares.

## Known failure modes

- Coordinate outside the supported European bounding box (lat 34–72.5, lon -31.5–40.5) returns an error or empty result
- Invalid or missing latitude/longitude parameters cause a 400 bad request
- Very small islands or coastal edge cases may fall outside coverage polygons
- Payment failure via x402 protocol results in 402 Payment Required response

## How this service works

Dominant ESA WorldCover 2021 class in the analysis area. The service evaluates a 60 metre local analysis grid around one coordinate and returns standardized units across all 30 covered countries.

## Output

A standardized ESA WorldCover 2021 dominant land cover class label (e.g. Tree Cover, Shrubland, Grassland, Cropland, Built-up, Bare/Sparse Vegetation, Snow/Ice, Permanent Water Bodies, Herbaceous Wetland, Mangroves) representing the most prevalent class within a 60-metre analysis grid around the supplied coordinate. Coverage spans 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-dominant-land-cover-class-point-038288ea/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)
