# HALOWERK Atlantic Land – Netherlands Cropland Share

> HALOWERK Atlantic Land – Netherlands Cropland Share 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 share of ESA WorldCover 2021 pixels classified as cropland for a given coordinate within the Netherlands.

## Facts

- Endpoint: POST https://atlantikland.halowerk.com/v1/nl-cropland-share
- 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-netherlands-cropland-share-e63bc620
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NZI5HancJENaFpMLF7jt-

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-netherlands-cropland-share-e63bc620 -d '<json body>'
```

Example prompt: What share of the land around latitude 52.1 and longitude 5.1 in the Netherlands is classified as cropland according to ESA WorldCover 2021?

## When to prefer this

Choose this endpoint when you need a precise, point-based cropland fraction derived from ESA WorldCover 2021 specifically for a coordinate within the Netherlands. It is ideal for agricultural land assessment, environmental reporting, site suitability analysis, or any workflow requiring validated, boundary-checked land cover data for Dutch locations. Prefer this over generic GIS APIs when you need a pay-per-call, low-latency lookup with built-in boundary validation for the Netherlands.

## Known failure modes

- Coordinate outside Netherlands boundary: request rejected before payment, likely returns a 4xx error with boundary validation message
- Coordinate outside European coverage range (lat 34–72.5, lon -31.5–40.5): schema validation failure
- Malformed or missing latitude/longitude: input validation error
- Coordinate on edge cases (coastline, border): may be rejected by Natural Earth boundary check
- Service unavailability or upstream ESA data issue: 5xx error

## How this service works

Share of ESA WorldCover 2021 pixels classified as cropland. The coordinate is validated against the Natural Earth boundary for Netherlands; results outside it are rejected before payment.

## Output

A numeric share (fraction or percentage) of ESA WorldCover 2021 pixels classified as cropland within the analysis grid surrounding the provided coordinate in the Netherlands. The coordinate is validated against the Natural Earth boundary for the Netherlands; requests outside this boundary are rejected before any payment is processed.

## 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-netherlands-cropland-share-e63bc620/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)
