Resolve a geohash cell to its reverse-geocoded area label. Public — no authentication (naming a cell is public data, no viewer). Used for the area picker's live name as you pan.
Parameters
Output
Encoding
application/jsonarea
refcommunity.gifthood.geo.defs#area
Required
The resolved cell.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"area"
],
"properties": {
"area": {
"ref": "community.gifthood.geo.defs#area",
"type": "ref",
"description": "The resolved cell."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"geohash"
],
"properties": {
"geohash": {
"type": "string",
"description": "The geohash cell to name."
},
"precision": {
"type": "integer",
"maximum": 12,
"minimum": 1,
"description": "Optional truncation precision applied to the geohash before naming (consistency with feed.getListings; naming is gh-6-keyed)."
}
}
},
"description": "Resolve a geohash cell to its reverse-geocoded area label. Public — no authentication (naming a cell is public data, no viewer). Used for the area picker's live name as you pan."
}