## Reverse geocode a coordinate `geocode().reverse(GeocodeReverseParamsparams, RequestOptionsrequestOptions = RequestOptions.none()) : ReverseGeocodeResult` **get** `/api/v1/geocode/reverse` Reverse geocode a coordinate ### Parameters - `params: GeocodeReverseParams` - `lat: Double` Latitude - `lng: Double` Longitude - `lang: Optional` Language code for localized names (e.g. en, de, fr) - `layer: Optional` Filter by layer: house or poi - `limit: Optional` Maximum results (default 1, max 20) - `radius: Optional` Search radius in meters (default 200, max 5000) ### Returns - `class ReverseGeocodeResult:` GeoJSON FeatureCollection of reverse geocoding results - `features: List` - `geometry: GeoJsonGeometry` - `coordinates: Coordinates` GeoJSON coordinates array (nesting depth varies by geometry type) - `List` - `List>` - `List>>` - `List>>>` - `type: Type` - `POINT("Point")` - `LINE_STRING("LineString")` - `POLYGON("Polygon")` - `MULTI_POINT("MultiPoint")` - `MULTI_LINE_STRING("MultiLineString")` - `MULTI_POLYGON("MultiPolygon")` - `properties: Properties` - `countryCode: Optional` ISO 3166-1 alpha-2 country code - `displayName: Optional` Formatted address or place name - `distanceM: Optional` Distance in meters - `osmId: Optional` OpenStreetMap ID - `osmType: Optional` OSM element type - `score: Optional` Match confidence score - `source: Optional` Result source (address, place, interpolation) - `type: Type` - `FEATURE("Feature")` - `type: Type` - `FEATURE_COLLECTION("FeatureCollection")` ### Example ```kotlin package com.plazafyi.example import com.plazafyi.client.PlazaClient import com.plazafyi.client.okhttp.PlazaOkHttpClient import com.plazafyi.models.geocode.GeocodeReverseParams import com.plazafyi.models.geocode.ReverseGeocodeResult fun main() { val client: PlazaClient = PlazaOkHttpClient.fromEnv() val params: GeocodeReverseParams = GeocodeReverseParams.builder() .lat(0.0) .lng(0.0) .build() val reverseGeocodeResult: ReverseGeocodeResult = client.geocode().reverse(params) } ```