# Geoportail Urbanisme — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find parcel information and urban planning documents for any French address, instantly accessing zoning details, land use regulations, and planning requirements from the official Géoportail database. Search by address to discover property classifications, construction rules, and relevant urban planning documentation for your location.

**Category:** Government & Public Data | **Website:** [geoportail-urbanisme.gouv.fr/](https://geoportail-urbanisme.gouv.fr/) | **Docs:** [parse.bot/marketplace/efcb4514-11e8-4467-b6e4-b14078467d23/geoportail-urbanisme-gouv-fr-api](https://parse.bot/marketplace/efcb4514-11e8-4467-b6e4-b14078467d23/geoportail-urbanisme-gouv-fr-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-geoportail-urbanisme-gouv-fr-api-efcb4514/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_address

Search for a French address and retrieve parcel details, geocoding information, and associated urban planning documents. Geocodes the address, reverse-geocodes to identify the cadastral parcel, then queries urban planning layers (DU and SUP) for associated documents including zoning rules, land use classifications, and infrastructure servitudes. Returns transport infrastructure noise classification files when present.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | No | The French address to search for (e.g. 'place Landouzy, 63400 Chamalières', 'Rue de la Paix, 75002 Paris'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-geoportail-urbanisme-gouv-fr-api-efcb4514/search_address \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>"}'
```
