API Basics
Data Tools
WWW
Browser Bot
HTML Clean
URL Info
Telephony
Geolocation
Security and Networking
E-commerce
Imaging
Legacy APIs

Geocode Reverse

Convert a geographic coordinate (latitude and longitude) into a real world address.

This API is ideal for applications which process raw location data like coordinates obtained from mobile GPS devices. Reverse geocoding is the opposite process of address geocoding, you can get detailed location data right down to a specific building or zoomed out to the street, city or country level.

End Point

https://neutrinoapi.net/geocode-reverse
Test API
API Request
ParameterRequiredTypeDefaultDescription
latitudeyesstringThe location latitude in decimal degrees format
longitudeyesstringThe location longitude in decimal degrees format
language-codenostringenThe language to display results in, available languages are:
  • de, en, es, fr, it, pt, ru
zoomnostringaddressThe zoom level to respond with:
  • address - the most precise address available
  • street - the street level
  • city - the city level
  • state - the state level
  • country - the country level
API Response
ParameterTypeDescription
foundbooleanTrue if these coordinates map to a real location
latitudefloatThe location latitude
longitudefloatThe location longitude
addressstringThe complete address using comma-separated values
address-componentsmapThe components which make up the address such as road, city, state, etc
citystringThe city of the location
statestringThe state of the location
region-codestringThe ISO 3166-2 region code for the location
countrystringThe country of the location
country-codestringThe ISO 2-letter country code of the location
country-code3stringThe ISO 3-letter country code of the location
currency-codestringISO 4217 currency code associated with the country
postal-codestringThe postal code for the location
postal-addressstringThe formatted address using local standards suitable for printing on an envelope
location-typestringThe detected location type ordered roughly from most to least precise, possible values are:
  • address - indicates a precise street address
  • street - accurate to the street level but may not point to the exact location of the house/building number
  • city - accurate to the city level, this includes villages, towns, suburbs, etc
  • postal-code - indicates a postal code area (no house or street information present)
  • railway - location is part of a rail network such as a station or railway track
  • natural - indicates a natural feature, for example a mountain peak or a waterway
  • island - location is an island or archipelago
  • administrative - indicates an administrative boundary such as a country, state or province
location-tagsarrayArray of strings containing any location tags associated with the address. Tags are additional pieces of metadata about a specific location, there are thousands of different tags. Some examples of tags: shop, office, cafe, bank, pub
timezonemapMap containing timezone details for the location:
ParameterTypeDescription
idstringThe time zone ID as per the IANA time zone database (tzdata)
namestringThe full time zone name
abbrstringThe time zone abbreviation
datestringThe current date at the time zone (ISO 8601 format 'YYYY-MM-DD')
timestringThe current time at the time zone (ISO 8601 format 'hh:mm:ss.sss')
offsetstringThe UTC offset for the time zone (ISO 8601 format '±hh:mm')
API Performance
CharacteristicValueDescription
Avg Latency80msAverage RTT for requests within the same data center/region
Max Rate20/secondMaximum inbound request rate. Exceeding this will result in request throttling
Max Concurrency250Maximum concurrent/simultaneous requests. Exceeding this will result in error code 06 [TOO MANY CONNECTIONS]

API Example
curl https://neutrinoapi.net/geocode-reverse \ --header "User-ID: <your-user-id>" \ --header "API-Key: <your-api-key>" \ --data-urlencode "latitude=-41.2775847" \ --data-urlencode "longitude=174.7775229" \ --data-urlencode "language-code=en" \ --data-urlencode "zoom=address"
{ address: "1 Molesworth Street, Pipitea, Wellington 6140, New Zealand", address-components: { city: "Wellington", country: "New Zealand", county: "Wellington City", house-number: "1", postal-code: "6140", road: "Molesworth Street", state: "Wellington", suburb: "Pipitea" }, city: "Wellington", country: "New Zealand", country-code: "NZ", country-code3: "NZL", currency-code: "NZD", found: true, latitude: -41.2775847, location-tags: [ "house" ], location-type: "address", longitude: 174.7775229, postal-address: "1 Molesworth Street\nPipitea\nWellington 6140\nNew Zealand", postal-code: "6140", region-code: "WGN", state: "Wellington", timezone: { abbr: "NZDT", date: "2024-02-07", id: "Pacific/Auckland", name: "New Zealand Daylight Time", offset: "+13:00", time: "11:51:43.961376" } }