# Webtools402 Forward Geocoder (Nominatim)

> Webtools402 Forward Geocoder (Nominatim) is a paid API for AI agents from webtools402.176-109-107-191.sslip.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Forward-geocodes a street address or place name worldwide to geographic coordinates and parsed address components using OpenStreetMap Nominatim.

## Facts

- Endpoint: GET https://webtools402.176-109-107-191.sslip.io/geocode
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webtools402-forward-geocoder-nominatim-d922d9b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QwWcbwyslae6YSpXM5WjZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability webtools402-forward-geocoder-nominatim-d922d9b6
```

Example prompt: Can you get me the latitude and longitude for '1600 Pennsylvania Avenue NW, Washington DC'?

## When to prefer this

Use this endpoint when you need to convert a human-readable address or place name to coordinates without requiring an API key, especially for worldwide coverage at low cost. Prefer this over reverse geocoding endpoints when the input is a text address rather than coordinates.

## Known failure modes

- Address not found or ambiguous — Nominatim returns no results
- Malformed or empty address string — returns error
- Rate limiting from underlying Nominatim public API — slow or failed response
- Non-geographic input (e.g. person names, abstract concepts) returns no match

## How this service works

Forward-geocode a street address or place name (WORLDWIDE) to coordinates + parsed address components via OpenStreetMap Nominatim (public, keyless).

## Output

Returns geographic coordinates (latitude, longitude) and parsed address components (street, city, country, etc.) for the provided address or place name, sourced from OpenStreetMap Nominatim.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Street address or place name (any country)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webtools402-forward-geocoder-nominatim-d922d9b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from webtools402.176-109-107-191.sslip.io](https://www.zero.xyz/host/webtools402.176-109-107-191.sslip.io/llms.txt)
