French Address Search

API

Free French address search API by the French Government

Visit Website

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)

script.js JS

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

Nominatim (OpenStreetMap) Search Google
Google Maps Geocoding API Search Google

People Also Ask about French Address Search

French Address Search vs Nominatim (OpenStreetMap)French Address Search vs Google Maps Geocoding API French Address Search 2025 review

Tool Info

Pricing Free
Category Open Data
Platform Public API

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

More Open Data Tools