# fittings.sh Forward Geocoder

> fittings.sh Forward Geocoder is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Converts a free-form US street address into latitude/longitude coordinates with a standardized, matched address string.

## Facts

- Endpoint: GET https://fittings.sh/v1/geo/forward-geocode
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-sh-forward-geocoder-819b2b9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wTUXOBvz94IyAZj8OShB-

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 fittings-sh-forward-geocoder-819b2b9d
```

Example prompt: What are the latitude and longitude coordinates for 1600 Pennsylvania Avenue NW, Washington, DC 20500?

## When to prefer this

Choose this endpoint when you need to convert a US street address into geographic coordinates and want a standardized address back alongside the coordinates. It is well-suited for single-address lookups billed per call at low cost ($0.003 USDC), making it ideal for on-demand geocoding in agent workflows. Prefer this over batch geocoding services when processing one address at a time, and over reverse geocoders when you have an address and need coordinates (not the other way around). Note: US-only coverage — use an alternative for international addresses.

## Known failure modes

- Address not found or unresolvable — returns an error or empty result
- Non-US address supplied — endpoint only covers US addresses and will fail or return no match
- Ambiguous address with insufficient detail — may return a low-confidence match or fail
- Malformed or completely nonsensical address string — likely returns an error
- Network timeout or service unavailability — returns a server error

## How this service works

Convert a US street address to latitude/longitude with a matched, standardized address. US coverage only.

## Output

Returns the matched latitude and longitude as decimal degree values along with a standardized version of the input address, allowing the caller to confirm which location was resolved and use the coordinates in downstream geospatial workflows.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Free-form US street address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-sh-forward-geocoder-819b2b9d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
