# Reverse

Reverse geocoding uses latitude and longitude information to provide an address. An optional description of the zoom level provides information suitable for the OpenLayers room level.

{% hint style="info" %}
See the [**API Key Issuance page**](https://nostramap-doc.fatos.biz/get-your-api-key) for information on using keys.
{% endhint %}

## Reverse Geocoding

<mark style="color:blue;">`GET`</mark> `https://api.fatos.biz/nostra/api/geocoding/reverse`

<https://api.fatos.biz/nostra/api/geocoding/reverse?key=YOUR\\_API\\_KEY\\&format=json\\&lat=13.687091\\&lon=100.533239\\&zoom=18\\&addressdetails=1\\&accept-language=en>

#### Query Parameters

| Name | Type   | Description                       |
| ---- | ------ | --------------------------------- |
| key  | string | Your API Key.                     |
| lat  | string | Y coordinate of the search target |
| lon  | string | X coordinate of the search target |

{% tabs %}
{% tab title="200 " %}

```javascript

{
   "place_id":118088515,
   "licence":"Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
   "osm_type":"way",
   "osm_id":153714066,
   "lat":"13.6871585047729",
   "lon":"100.533058061162",
   "display_name":"Thanon Sathu Pradit, Bang Phong Phang, Bangkok, Yannawa District, Bangkok, 10120, Thailand",
   "address":{
      "road":"Thanon Sathu Pradit",
      "neighbourhood":"Bang Phong Phang",
      "city":"Bangkok",
      "suburb":"Yannawa District",
      "state":"Bangkok",
      "postcode":"10120",
      "country":"Thailand",
      "country_code":"th"
   },
   "boundingbox":[
      "13.6789095",
      "13.6943457",
      "100.5289945",
      "100.5343971"
   ]
}
```

{% endtab %}
{% endtabs %}
