# HALOWERK Atlantic Land – Belgium Land Cover Class

> HALOWERK Atlantic Land – Belgium Land Cover Class is a paid API for AI agents from atlantikland.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 given coordinate within Belgium

## Facts

- Endpoint: POST https://atlantikland.halowerk.com/v1/be-landcover-class
- 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-atlantic-land-belgium-land-cover-class-693f4e7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l84L8oDL3oSHIlxEne7uD

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-atlantic-land-belgium-land-cover-class-693f4e7a -d '<json body>'
```

Example prompt: What's the dominant ESA WorldCover 2021 land cover class at latitude 50.8503, longitude 4.3517 in Belgium?

## When to prefer this

Choose this endpoint when you need to classify a specific Belgian location by its dominant land cover type according to ESA WorldCover 2021 — particularly for site assessments, land use audits, environmental screening, or geospatial enrichment pipelines focused on Belgium. It is ideal when you want a single authoritative land cover label rather than proportional breakdown of cover types. The built-in Belgium boundary validation ensures you are not accidentally querying a neighboring country. For built-up area share or soil properties at the same location, use the sibling endpoints on the same platform.

## Known failure modes

- Coordinate outside Belgium boundary: rejected before payment, returns validation error
- Coordinate within European bounding box but outside Belgium Natural Earth polygon: rejected
- Latitude or longitude outside the published European coverage range (lat 34–72.5, lon -31.5–40.5): schema validation error
- Invalid or missing coordinate parameters: 400-level error
- Service unavailability or upstream ESA data access failure: 5xx error

## How this service works

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

## Output

Returns the dominant ESA WorldCover 2021 land cover class label (e.g. tree cover, shrubland, grassland, cropland, built-up, bare/sparse vegetation, water, wetland, mangroves, moss/lichen) for the analysis area surrounding the provided Belgian coordinate. Coordinates outside the Natural Earth boundary for Belgium are rejected before payment is charged.

## 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-atlantic-land-belgium-land-cover-class-693f4e7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from atlantikland.halowerk.com](https://www.zero.xyz/host/atlantikland.halowerk.com/llms.txt)
