# Karte Halowerk Parking Rules

> Karte Halowerk Parking Rules is a paid API for AI agents from karte.halowerk.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns nearby parking areas, street parking, garages, and multi-storey car parks for a coordinate, with access rules, fees, capacity, disabled bays, max stay, height limits, surface, and park-and-ride status.

## Facts

- Endpoint: POST https://karte.halowerk.com/v1/parking-rules
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/karte-halowerk-parking-rules-4dc3f2e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yHwT1uSJ5oJGeHpooGBaK

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 karte-halowerk-parking-rules-4dc3f2e9 -d '<json body>'
```

Example prompt: Find all parking options within 300 metres of 52.5200° N, 13.4050° E — I need to know which ones are free, whether any have disabled spaces, and if there are height restrictions for covered car parks.

## When to prefer this

Choose this endpoint when you need parking-specific rule data (access class, fees, disabled capacity, max stay, height limits) near a geographic point, especially for routing, pre-trip planning, or accessibility compliance. Prefer it over generic venue search when parking policy detail matters, not just proximity. Best suited for contexts where OSM coverage is good (European cities especially).

## Known failure modes

- Coordinate outside mapped area returns empty results or sparse data
- Missing fee or capacity data where OSM contributors haven't recorded it
- Height restriction field absent for open-air lots
- Stale OSM data reflecting since-demolished or newly built facilities
- Invalid coordinate format causes request rejection
- Radius too large may time out or return excessive results

## How this service works

Returns parking areas, street-side parking, garages and multi-storey car parks near a coordinate, each with what governs whether you may leave a vehicle there: access class, whether a fee applies and what it is where recorded, total and disabled-designated capacity, maximum stay, height restriction for covered facilities, surface, and whether it is a park-and-ride.

## Output

A list of parking facilities near the given coordinate, each including: facility type (street parking, car park, garage, multi-storey), access class (public, private, customers only, etc.), whether a fee applies and the recorded fee if available, total capacity, disabled-designated spaces count, maximum stay duration, height restriction for covered facilities, surface material, and whether it serves as a park-and-ride stop.

## 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": 60,
   "maximum": 200,
   "minimum": 1
  },
  "free_only": {
   "type": "boolean",
   "default": false,
   "description": "Only facilities recorded as fee=no. Excludes unmapped ones and says how many."
  },
  "radius_km": {
   "type": "number",
   "default": 1,
   "maximum": 10,
   "minimum": 0.05
  },
  "min_capacity": {
   "type": "integer",
   "maximum": 5000,
   "minimum": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/karte-halowerk-parking-rules-4dc3f2e9/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)
