# Map every PLU zone of a French commune

**Use case:** 

Give one INSEE commune code and get every zoning polygon of that territory in a single row: each zone code, its full label, its family and the règlement it belongs to. Avignon returns 142 zones and 3,009 prescriptions. Typical use: mapping a commune for a feasibility study or building a local property product.

## Input

```json
{
  "addresses": [
    "1 place de l'Horloge, 84000 Avignon"
  ],
  "inseeCodes": [
    "84007"
  ],
  "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`).
