# HALOWERK Eastern Land – Hungary Land Cover Class

> HALOWERK Eastern Land – Hungary Land Cover Class is a paid API for AI agents from ostland.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 classification for a given coordinate within Hungary.

## Facts

- Endpoint: POST https://ostland.halowerk.com/v1/hu-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-eastern-land-hungary-land-cover-class-b08dcb92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VnLrq85kE575gZo725tdG

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-eastern-land-hungary-land-cover-class-b08dcb92 -d '<json body>'
```

Example prompt: What is the dominant ESA WorldCover 2021 land cover class at latitude 47.497, longitude 19.040 in Hungary?

## When to prefer this

Choose this endpoint when you need the official ESA WorldCover 2021 dominant land cover classification for a specific point in Hungary and want built-in coordinate boundary validation against Natural Earth Hungary borders. It is ideal for land use analysis, environmental screening, or geospatial data enrichment pipelines focused on Hungarian territory. Prefer it over generic global land cover APIs when Hungary-specific validation and low per-call cost ($0.003 USDC) matter.

## Known failure modes

- Coordinate outside Hungary boundary — rejected before payment with a validation error
- Latitude or longitude outside the European coverage range (34–72.5°N, -31.5–40.5°E) — schema validation error
- Malformed or missing coordinate fields — 400 Bad Request
- Payment failure or insufficient USDC balance — x402 payment required error
- Service unavailable or timeout — 503 or connection error

## How this service works

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

## Output

Returns the dominant ESA WorldCover 2021 land cover class label (e.g. Tree cover, Cropland, Built-up, Grassland, Shrubland, Wetland, Water body, Bare/sparse vegetation) for the queried coordinate within Hungary. Coordinates outside the Hungarian boundary are rejected before any charge is incurred.

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