community.gifthood.geo.resolveArea

gifthood.community

Documentation

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.

main query

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

geohash string Required

The geohash cell to name.

precision integer Optional

Optional truncation precision applied to the geohash before naming (consistency with feed.getListings; naming is gh-6-keyed).

Output

Encodingapplication/json
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The geohash cell to name.
Optional truncation precision applied to the geohash before naming (consistency with feed.getListings; naming is gh-6-keyed).
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."
}

Lexicon Garden

@