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

> HALOWERK Europe Land – Cropland Share (Point, 60 m 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 cropland within a 60-metre local analysis grid around a given European coordinate.

## Facts

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

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-cropland-share-point-60-m-grid-f6b21df2 -d '<json body>'
```

Example prompt: What share of the land within 60 metres of latitude 51.3 longitude 9.5 in Germany is classified as cropland according to ESA WorldCover?

## When to prefer this

Choose this endpoint when you need a fine-grained, hyper-local (60-metre grid) cropland share estimate for a single point in Europe, especially when working at sub-field scale or needing standardized values comparable across all 30 covered European countries. Prefer it over the 250-metre or 1,000-metre circular variants when local precision matters more than area-averaged statistics.

## Known failure modes

- Coordinates outside the European coverage bounds (lat 34–72.5, lon -31.5–40.5) will return an error or empty result
- Coordinates over open ocean with no land pixels may return zero or an error
- Malformed or missing latitude/longitude values will cause a validation error
- Network timeouts or service unavailability may result in a 5xx response

## How this service works

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

## Output

A standardized cropland share value (fraction or percentage) representing the proportion of ESA WorldCover 2021 pixels within a 60-metre local analysis grid around the supplied coordinate that are classified as cropland, returned 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-cropland-share-point-60-m-grid-f6b21df2/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)
