# Check PLU zoning for a list of French addresses

**Use case:** 

Paste a list of French postal addresses and get, for each one, the PLU zone that covers it, the zone label as written in the plan, the graphic prescriptions that constrain building there, and a link to the règlement. Typical use: a diagnostiqueur or estate agency running a client file through in one pass instead of searching the Géoportail address by address.

## Input

```json
{
  "addresses": [
    "12 rue de la République, 84000 Avignon",
    "25 avenue de la Gare, 84270 Vedène",
    "3 route de Carpentras, 84210 Pernes-les-Fontaines"
  ],
  "includeZoning": true,
  "includePrescriptions": true,
  "includeEasements": false,
  "includeDocumentInfo": true,
  "maxLocations": 1000
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "inputType": {
    "label": "Type"
  },
  "found": {
    "label": "Found"
  },
  "communeName": {
    "label": "Commune"
  },
  "insee": {
    "label": "INSEE"
  },
  "zoneCode": {
    "label": "Zone"
  },
  "zoneLabel": {
    "label": "Zone label"
  },
  "zoneType": {
    "label": "Family"
  },
  "regulationUrl": {
    "label": "Règlement"
  },
  "matchedAddress": {
    "label": "Matched address"
  },
  "longitude": {
    "label": "Lon"
  },
  "latitude": {
    "label": "Lat"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [French PLU & Urban Zoning Lookup (Géoportail de l'Urbanisme)](https://apify.com/dalbian/french-plu-urbanisme-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dalbian/french-plu-urbanisme-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/dalbian/french-plu-urbanisme-lookup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
