Our prices
Price list for single API calls
- Geocoding API € 0,001 + vat
FREE first 1000 calls/month
Transform a street address into geographical coordinates and vice versa. Everything via API.
Geocoding service available for 196 countries, with high precision mapping.
Our service allows you to convert street addresses into geographical coordinates (latitude and longitude) or convert geographical positions into addresses (geocoding reverse).
Starting from entering the address of more than 196 countries (here is an example):
{
"address": "Via Cristoforo Colombo, Roma RM"
}
You will be able to obtain the geographical coordinates of the indicated address with further information about the location:
{
{
"success": "true",
"elements": {
"id": "v442c6653ee93a5733e8a9ea2f842cd5c250d2b6ab",
"element": {
"providedBy": "google_maps | openstreetmap",
"latitude": 41.808916,
"longitude": 12.4535602,
"bounds": {
"south": 41.7691104,
"west": 12.3831487,
"north": 41.8731993,
"east": 12.4985637
},
"streetNumber": "null",
"streetName": "Via Cristoforo Colombo",
"postalCode": "04019",
"locality": "Roma",
"subLocality": "null",
"adminLevels": {
"1": {
"name": "Lazio",
"code": "Lazio",
"level": 1
},
"2": {
"name": "Citta Metropolitana di Roma",
"code": "RM",
"level": 2
},
"3": {
"name": "Roma",
"code": "Roma",
"level": 3
}
},
"country": "Italy",
"countryCode": "IT",
"timezone": "null"
}
}
}
Starting from the geographical coordinates - latitude and longitude (here is an example):
{
{
"id": "v442c6653ee93a5733e8a9ea2f842cd5c250d2b6ab",
"type": "id | coordinates",
"lat": 41.289294,
"long": 13.2349029
}
You can get, instead, the address corresponding to the coordinates:
{
{
"success": "true",
"elements": {
"id": "v442c6653ee93a5733e8a9ea2f842cd5c250d2b6ab",
"element": {
"providedBy": "google_maps | openstreetmap",
"latitude": 41.808916,
"longitude": 12.4535602,
"bounds": {
"south": 41.7691104,
"west": 12.3831487,
"north": 41.8731993,
"east": 12.4985637
},
"streetNumber": "null",
"streetName": "Via Cristoforo Colombo",
"postalCode": "04019",
"locality": "Roma",
"subLocality": "null",
"adminLevels": {
"1": {
"name": "Lazio",
"code": "Lazio",
"level": 1
},
"2": {
"name": "Citta Metropolitana di Roma",
"code": "RM",
"level": 2
},
"3": {
"name": "Roma",
"code": "Roma",
"level": 3
}
},
"country": "Italy",
"countryCode": "IT",
"timezone": "null"
}
}
}