# HALOWERK Europe Land – Tree Cover Share (Point, 60m Grid)

> HALOWERK Europe Land – Tree Cover Share (Point, 60m Grid) 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 share of ESA WorldCover 2021 pixels classified as tree cover within a 60-metre local analysis grid around a given European coordinate.

## Facts

- Endpoint: POST https://euroland.halowerk.com/v1/europe-tree-cover-share-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-tree-cover-share-point-60m-grid-20373389
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KCEsferYKKhAHoldctBYJ

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-tree-cover-share-point-60m-grid-20373389 -d '<json body>'
```

Example prompt: What's the tree cover share at latitude 51.5 longitude -0.1 in Europe, using the 60-metre local analysis grid from ESA WorldCover 2021?

## When to prefer this

Choose this endpoint when you need a precise, point-based tree cover fraction derived from ESA WorldCover 2021 data for a specific European coordinate, particularly when a small 60-metre analysis window is appropriate (e.g., site-level assessment). Use sibling endpoints if you need a circular buffer (250m, 1km) or polygon-based evaluation, or if you need other land cover classes such as cropland, grassland, or wetland.

## Known failure modes

- Coordinate outside European coverage bounds (latitude 34–72.5, longitude −31.5–40.5) returns an error or empty result
- Invalid or missing latitude/longitude values cause a validation error
- Network timeout or service unavailability returns a 5xx error
- Coordinates on the exact boundary of coverage may produce edge-case results

## How this service works

Share of ESA WorldCover 2021 pixels classified as tree cover. The service evaluates a 60 metre local analysis grid around one coordinate and returns standardized units across all 30 covered countries.

## Output

A standardized fractional value (share) representing the proportion of ESA WorldCover 2021 pixels within a 60-metre local analysis grid around the supplied coordinate that are classified as tree cover, expressed consistently across all 30 covered 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-tree-cover-share-point-60m-grid-20373389/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)
