# NDW Truck Parking Availability Netherlands

> NDW Truck Parking Availability Netherlands is a paid API for AI agents from api.getapi.nl, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns real-time truck parking availability, capacity, and location data for Dutch highway truck rest areas via NDW (Nationale Databank Wegverkeergegevens).

## Facts

- Endpoint: GET https://api.getapi.nl/api/v1/ndw/truckparking
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ndw-truck-parking-availability-netherlands-9f4ccb59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GASDZcDZGJ-eIapZvwTac

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 ndw-truck-parking-availability-netherlands-9f4ccb59
```

Example prompt: Can you check how many truck parking spaces are currently available at rest areas along Dutch highways, and show me which ones still have capacity with their locations?

## When to prefer this

Choose this endpoint when you need real-time or near-real-time truck parking availability specifically on Dutch national highways sourced from the official NDW data authority. Prefer this over generic mapping APIs when you need structured occupancy data (available_spaces, total_capacity) rather than just location pins, and when your use case involves logistics routing, fleet management, or compliance with Dutch road rest requirements.

## Known failure modes

- No results returned if NDW data feed is temporarily unavailable
- Stale dynamic data if real-time feed has not updated recently (check dynamic_updated_at field)
- HTTP 402 payment required if USDC micropayment not included
- HTTP 429 rate limiting if request quota exceeded
- Partial data if some parking facilities have not reported status

## How this service works

Ontdek, test en integreer krachtige API&#039;s voor web scraping, e-mailvalidatie, geolocatie
    en meer. Gratis starten.

## Output

A JSON object with a total count and an array of truck parking facilities, each including a unique ID, city, name, associated highway, availability status, GPS coordinates (latitude/longitude), total capacity, number of available spaces, and timestamps for both static and dynamic data updates.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "road": "value",
      "status": "value",
      "beschikbaar": true
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "total": 1,
     "results": [
      {
       "id": "NL_NKTP_001",
       "city": "Breda",
       "name": "Truckparkeerplaats Breda A16",
       "road": "A16",
       "status": "available",
       "latitude": 51.5927,
       "longitude": 4.7793,
       "total_capacity": 120,
       "available_spaces": 34,
       "static_updated_at": "2026-04-29T00:00:00+00:00",
       "dynamic_updated_at": "2026-05-14T13:47:00+00:00"
      }
     ]
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "total": 1,
  "results": [
   {
    "id": "NL_NKTP_001",
    "city": "Breda",
    "name": "Truckparkeerplaats Breda A16",
    "road": "A16",
    "status": "available",
    "latitude": 51.5927,
    "longitude": 4.7793,
    "total_capacity": 120,
    "available_spaces": 34,
    "static_updated_at": "2026-04-29T00:00:00+00:00",
    "dynamic_updated_at": "2026-05-14T13:47:00+00:00"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ndw-truck-parking-availability-netherlands-9f4ccb59/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getapi.nl](https://www.zero.xyz/host/api.getapi.nl/llms.txt)
