Geocode Lookup
/install geocode-lookup
geocode-lookup
Address to coordinates (forward geocoding), coordinates to address (reverse geocoding), and Haversine distance calculations.
Data Handling
This skill sends addresses and coordinates to an external API. Do not send private addresses without explicit user consent. The service does not store or log input data beyond the immediate response.
Endpoints
Forward Geocode
curl -X POST https://geocode.agentutil.net/v1/forward \
-H "Content-Type: application/json" \
-d '{"address": "Auckland, New Zealand"}'
Optional: limit (1-5, default 1).
Reverse Geocode
curl -X POST https://geocode.agentutil.net/v1/reverse \
-H "Content-Type: application/json" \
-d '{"lat": -36.8485, "lon": 174.7633}'
Distance
curl -X POST https://geocode.agentutil.net/v1/distance \
-H "Content-Type: application/json" \
-d '{"from": {"address": "London, UK"}, "to": {"address": "New York, US"}, "unit": "km"}'
Units: km, mi, m, nm. Accepts {lat, lon} or {address} for both endpoints.
Response Format
{
"results": [
{"lat": -36.8485, "lon": 174.7633, "display_name": "Auckland, New Zealand", "type": "city"}
],
"request_id": "abc-123",
"service": "https://geocode.agentutil.net"
}
Pricing
- Free tier: 10 queries/day, no authentication required
- Paid tier: $0.001/query via x402 protocol (USDC on Base)
Privacy
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install geocode-lookup - 安装完成后,直接呼叫该 Skill 的名称或使用
/geocode-lookup触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Geocode Lookup 是什么?
Forward/reverse geocoding and great-circle distance calculations. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 314 次。
如何安装 Geocode Lookup?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install geocode-lookup」即可一键安装,无需额外配置。
Geocode Lookup 是免费的吗?
是的,Geocode Lookup 完全免费(开源免费),可自由下载、安装和使用。
Geocode Lookup 支持哪些平台?
Geocode Lookup 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Geocode Lookup?
由 CutTheMustard(@cutthemustard)开发并维护,当前版本 v1.0.0。