# HALOWERK Nordic Land – DK Dominant Land Cover Class

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

Returns the dominant ESA WorldCover 2021 land cover class for a given coordinate within Denmark's boundary.

## Facts

- Endpoint: POST https://nordland.halowerk.com/v1/dk-landcover-class
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-nordic-land-dk-dominant-land-cover-class-fc835e2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a3LvR-0xpmmw_8DEyG1v4

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-nordic-land-dk-dominant-land-cover-class-fc835e2b -d '<json body>'
```

Example prompt: What's the dominant ESA WorldCover 2021 land cover class at latitude 55.6761, longitude 12.5683 in Denmark?

## When to prefer this

Use this endpoint when you need the dominant land cover classification specifically for a point in Denmark, validated against official boundaries, sourced from the authoritative ESA WorldCover 2021 dataset. Prefer it over generic geospatial APIs when Denmark-specific boundary validation is required and when ESA WorldCover 2021 class labels are needed rather than alternative classification schemes.

## Known failure modes

- Coordinate outside Denmark's Natural Earth boundary — request rejected before payment
- Latitude or longitude outside the accepted European coverage range (lat 34–72.5, lon -31.5–40.5) — validation error
- Malformed coordinate values or missing required fields — schema validation error
- Network timeout or upstream ESA data unavailability — service error

## How this service works

Dominant ESA WorldCover 2021 class in the analysis area. The coordinate is validated against the Natural Earth boundary for Denmark; results outside it are rejected before payment.

## Output

Returns the dominant ESA WorldCover 2021 land cover class (e.g. Tree cover, Shrubland, Grassland, Cropland, Built-up, Bare/sparse vegetation, Snow and ice, Permanent water bodies, Herbaceous wetland, Mangroves, Moss and lichen) for the queried coordinate, after validating the point falls within Denmark's Natural Earth boundary.

## 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-nordic-land-dk-dominant-land-cover-class-fc835e2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nordland.halowerk.com](https://www.zero.xyz/host/nordland.halowerk.com/llms.txt)
