French Address Search
APIFree French address search API by the French Government
Overview
The French Address Search API (from geo.api.gouv.fr) offers RESTful endpoints for forward geocoding (address text to coordinates) and reverse geocoding (coordinates to address). Key endpoints include /search (with query params like q for address queries and limit for result count) and /reverse (using lat/lon). Responses are JSON-formatted, containing official address details (street name, postal code, commune, latitude/longitude). Use cases include autocomplete in forms, validating delivery addresses, integrating geolocation in logistics apps, and mapping French locations for urban planning or tourism platforms.
Example Integration (JavaScript)
fetch('https://geo.api.gouv.fr/adresse')
.then(res => res.json())
.then(data => console.log(data))
.catch(err => console.error(err)); Key Features
- RESTful
- JSON support
- No Auth required
- Forward & reverse geocoding
- Official government data
Frequently Asked Questions
? Is the French Address Search API free to use?
Yes, it is a free open data service provided by the French Government.
? Does it require an API Key?
No, authentication is not required for standard access.
? What is the response format?
All responses are in JSON, including detailed address components and geographic coordinates.
Top Alternatives
People Also Ask about French Address Search
Tool Info
Pros
- ⊕ Free open data
- ⊕ Up-to-date address information
- ⊕ Easy to integrate
- ⊕ Supports autocomplete
Cons
- ⊖ Rate-limited for high usage
- ⊖ Only covers French addresses
- ⊖ No enterprise SLA