# Halowerk Parcel Locker Finder

> Halowerk Parcel Locker Finder is a paid API for AI agents from karte.halowerk.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns parcel lockers, packstations, and staffed pickup points near a given coordinate, with operator, brand, opening hours, access class, indoor status, and distance, distinguishing automated lockers from staffed shops.

## Facts

- Endpoint: POST https://karte.halowerk.com/v1/parcel-locker
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-parcel-locker-finder-b5540ea7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uM6ctRTK4E5LoSqLxB5Kt

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-parcel-locker-finder-b5540ea7 -d '<json body>'
```

Example prompt: Find all parcel lockers, packstations, and staffed pickup points within 600 metres of 51.5074, -0.1278 — I need to know which are automated 24/7 lockers versus staffed shops, their opening hours, and how far each one is.

## When to prefer this

Choose this endpoint when you need to find parcel collection points near a specific coordinate and critically need to distinguish automated 24/7 lockers (packstations) from staffed pickup shops that have limited opening hours. Prefer it over generic POI search APIs because it is purpose-built for parcel logistics, returns operator and access-class metadata, and explicitly flags the locker-vs-staffed distinction that generic OSM searches collapse.

## Known failure modes

- No parcel lockers found within the specified radius — sparse OSM coverage in rural or low-data areas
- Stale or incomplete OpenStreetMap data — opening hours or operator info may be missing or outdated
- Invalid or out-of-range coordinates — endpoint returns an error
- Radius too large — may time out or return an unmanageably large result set
- Brand tag ambiguity — locker and staffed shop may share the same brand in OSM, though the endpoint attempts to distinguish them

## How this service works

Returns parcel lockers, packstations and staffed pickup points around a point, each with operator, brand, opening hours as recorded, access class, whether it is indoors, and the distance. The distinction the response insists on is between an automated locker and a staffed shop: in OpenStreetMap both frequently carry the same brand tag, and treating them as one thing promises round-the-clock collection and delivers shop hours.

## Output

A list of nearby parcel collection facilities, each containing: facility type (automated locker vs staffed point), operator name, brand, opening hours as recorded in OpenStreetMap, access class (e.g. public/private), whether the facility is indoors, and distance from the queried coordinate. Results are sorted by distance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "lon": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  },
  "limit": {
   "type": "integer",
   "default": 40,
   "maximum": 150,
   "minimum": 1
  },
  "operator": {
   "type": "string",
   "maxLength": 60,
   "description": "Filter by operator or brand, matched case-insensitively against both."
  },
  "radius_km": {
   "type": "number",
   "default": 3,
   "maximum": 25,
   "minimum": 0.1
  },
  "lockers_only": {
   "type": "boolean",
   "default": false,
   "description": "Only automated lockers, excluding staffed shops."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-parcel-locker-finder-b5540ea7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from karte.halowerk.com](https://www.zero.xyz/host/karte.halowerk.com/llms.txt)
