Enterprise‑grade address validation and geocoding across 30+ European countries. Fast, accurate, and developer‑friendly.
Atlas GeoTech provides enterprise-grade address validation and geocoding services specifically designed for Europe addresses. Our platform leverages the official Europe government API to deliver accurate, up-to-date geocoding results.
available country:["AT","BE","BG","CH","CY","CZ","DE","DK","EE","ES","FI","FO","FR","HR","HU","IS","IT","LI","LT","LU","LV","MT","NL","NO","PL","PT","RO","SE","SI","SK"]
Click "Send request" to see transformed JSON
Click "Send reverse" to see transformed JSON
Click on the map to reverse geocode, or use the search below to forward geocode. Markers show transformed address details.
Geocoding is the process of converting addresses (like "12 Rue Watteau, 75013 Paris") into geographic coordinates (latitude and longitude). This enables you to place addresses on a map or perform spatial analysis.
Sample Input
(Address):"12 Rue Watteau, 75013 Paris"
"8 Boulevard du Palais, Paris"
"1 Parvis Notre-Dame, 75004 Paris"
Sample Output (Coordinates):
{
"latitude": 48.828,
"longitude": 2.356,
"formatted_address": "12 Rue Watteau 75013 Paris"
}
Reverse geocoding converts geographic coordinates (latitude, longitude) into human-readable addresses. This is useful when you have GPS coordinates and need to determine the corresponding address.
Sample Input
(Coordinates):Lat: 48.8566, Lon: 2.3522Lat: 48.828, Lon: 2.356
Sample Output (Address):
{
"formatted_address": "12 Rue Watteau 75013 Paris",
"street": "Rue Watteau",
"postcode": "75013",
"city": "Paris"
}
| Code | Country | Coverage | Quality |
|---|---|---|---|
| AT | Austria | 99% | 99.9% |
| BE | Belgium | 99% | 99.9% |
| BG | Bulgaria | 99% | 99.9% |
| CH | Switzerland | 99% | 99.9% |
| CY | Cyprus | 99% | 99.9% |
| CZ | Czechia | 99% | 99.9% |
| DE | Germany | 99% | 99.9% |
| DK | Denmark | 99% | 99.9% |
| EE | Estonia | 99% | 99.9% |
| ES | Spain | 99% | 99.9% |
| FI | Finland | 99% | 99.9% |
| FO | Faroe Islands | 99% | 99.9% |
| FR | France | 99% | 99.9% |
| HR | Croatia | 99% | 99.9% |
| HU | Hungary | 99% | 99.9% |
| IS | Iceland | 99% | 99.9% |
| IT | Italy | 99% | 99.9% |
| LI | Liechtenstein | 99% | 99.9% |
| LT | Lithuania | 99% | 99.9% |
| LU | Luxembourg | 99% | 99.9% |
| LV | Latvia | 99% | 99.9% |
| MT | Malta | 99% | 99.9% |
| NL | Netherlands | 99% | 99.9% |
| NO | Norway | 99% | 99.9% |
| PL | Poland | 99% | 99.9% |
| PT | Portugal | 99% | 99.9% |
| RO | Romania | 99% | 99.9% |
| SE | Sweden | 99% | 99.9% |
| SI | Slovenia | 99% | 99.9% |
| SK | Slovakia | 99% | 99.9% |
| Country | Code | Coverage |
|---|---|---|
| United States | USA | 99% |
| United Kingdom | UK | 99% |
| India | IND | 99% |
| China | CHN | 99% |
| Canada | CAN | 99% |
Address validation ensures addresses are correct, complete, and properly formatted according to French postal standards.
# address, city, postcode "12 Rue Watteau", "Paris", "75013" "8 Boulevard du Palais", "Paris", "75001" "Invalid Address", "Nowhere", "" "1 Parvis Notre-Dame", "Paris", "75004"
# address, lat, lon, formatted_address, status "12 Rue Watteau", 48.828, 2.356, "12 Rue Watteau 75013 Paris", "valid" "8 Boulevard du Palais", 48.855, 2.345, "8 Boulevard du Palais 75001 Paris", "valid" "Invalid Address", , , "Address not found", "invalid" "1 Parvis Notre-Dame", 48.853, 2.349, "1 Parvis Notre-Dame 75004 Paris", "valid"
Interactive maps, heatmaps, spatial clustering. Export PNG/PDF/SVG.
Standardization, duplicate removal, postal validation, enrichment.
High‑volume batch (100k+), rate limit mgmt, dedicated SLAs, custom integration.
Seamlessly integrate geocoding into your applications with comprehensive documentation, SDKs, and webhooks.
/search/?q={query}&limit={limit}&lat={lat}&lon={lon}&type={type}
q |
string | Address query (required) |
limit |
integer | Max results (default: 5, max: 20) |
autocomplete |
0/1 | Enable autocomplete |
Example
RequestGET https://api.atlasgeotech/search/?q=12+Rue+Watteau+75013+Paris&limit=5&autocomplete=1
Example Response
{
"type": "FeatureCollection",
"version": "draft",
"features": [{
"geometry": { "type": "Point", "coordinates": [2.356, 48.828] },
"properties": {
"label": "12 Rue Watteau 75013 Paris",
"score": 0.95,
"housenumber": "12",
"street": "Rue Watteau",
"postcode": "75013",
"city": "Paris"
}
}]
}
/reverse?lat={latitude}&lon={longitude}&type={type}
lat |
float | Latitude (required) |
lon |
float | Longitude (required) |
type |
string | housenumber/street/city |
Example
RequestGET https://api.atlasgeotech/reverse?lat=48.828&lon=2.356&type=housenumber
Example Response
{
"type": "FeatureCollection",
"version": "draft",
"features": [{
"geometry": { "type": "Point", "coordinates": [2.356, 48.828] },
"properties": {
"label": "12 Rue Watteau 75013 Paris",
"distance": 15,
"housenumber": "12",
"street": "Rue Watteau",
"postcode": "75013",
"city": "Paris"
}
}]
}
/search/csv/
# CSV Format address;postcode;city 12 Rue Watteau;75013;Paris 8 Boulevard du Palais;75001;Paris 1 Parvis Notre-Dame;75004;Paris
Example Response
{
"type": "FeatureCollection",
"features": [{
"properties": {
"result_label": "12 Rue Watteau 75013 Paris",
"result_score": 0.95,
"latitude": 48.828,
"longitude": 2.356
}
}]
}
/search/?q={partial_query}&autocomplete=1
Use Cases: Address search boxes, form autocomplete, real-time suggestions.
Example
RequestGET https://api.atlasgeotech/search/?q=12+Rue+Watteau+Par&autocomplete=1
{
"type": "FeatureCollection",
"features": [{
"properties": {
"label": "12 Rue Watteau 75013 Paris",
"context": "75, Paris, Île-de-France"
}
}]
}
| 200 | OK | Successful request |
| 400 | Bad Request | Invalid parameters |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Internal Server Error | Server error |
Sign up for free and get 1,000 geocoding requests per month. No credit card required.
Start Free Trial View Documentation