# US Address Geocoder (Census TIGER)

> US Address Geocoder (Census TIGER) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-16).

Geocodes a full US street address to latitude/longitude coordinates with the official matched address and TIGER line metadata from the US Census Bureau.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-places-us-address-geocode
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-address-geocoder-census-tiger-ae3386b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mRt1bibA2SPzdIgUavMGN

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 us-address-geocoder-census-tiger-ae3386b3 -d '<json body>'
```

Example prompt: Can you geocode '1600 Pennsylvania Avenue NW, Washington, DC 20500' to get its exact latitude and longitude, along with the official Census-matched address?

## When to prefer this

Choose this endpoint when you need authoritative, official US address geocoding backed by the Census Bureau's TIGER database with no API key required. Ideal when you need the official matched address string and TIGER line metadata alongside coordinates, or when you want a reliable, key-free geocoder for US addresses without depending on Google Maps or similar commercial providers.

## Known failure modes

- Address not found or unrecognizable — Census geocoder returns no match
- Non-US address provided — service only covers US addresses
- Malformed or incomplete address string — insufficient data to geocode
- Payment failure ($0.07 USDC x402 not fulfilled) — request rejected
- Service timeout — upstream Census Bureau API unavailable

## How this service works

Geocode a full US street address to latitude/longitude with the official matched address and TIGER line metadata. Authoritative US Census Bureau geocoder, no key required. Pass a one-line address string.

## Output

Returns the latitude and longitude of the matched US address, the official Census Bureau matched/normalized address string, and associated TIGER line metadata such as the TIGER line ID, side of street, and census geography identifiers.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/us-address-geocoder-census-tiger-ae3386b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
