# fittings Census Address Geographies

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

Geocode a free-form US street address and return the matched address, lat/lng coordinates, and its Census tract, county, and state codes in a single call.

## Facts

- Endpoint: GET https://fittings.sh/v1/census/address-geographies
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-census-address-geographies-0d505807
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZnQ6WRPJjzJ_4DlZ_92co

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-census-address-geographies-0d505807
```

Example prompt: What are the Census tract, county, and state codes for 1600 Pennsylvania Ave NW, Washington DC 20500?

## When to prefer this

Choose this endpoint when you need Census geographic identifiers (tract, county, state FIPS codes) alongside geocoordinates from a single address lookup in one API call. It is ideal for demographic enrichment, compliance reporting, or geographic analysis where both lat/lng and Census tract data are needed simultaneously, without chaining a separate geocoder and Census boundary lookup.

## Known failure modes

- Address not found or unresolvable returns an error or empty match
- Non-US addresses are not supported
- Ambiguous addresses may return incorrect or partial matches
- Malformed or overly abbreviated addresses may fail geocoding
- Input exceeding 200 characters is rejected

## How this service works

Geocode a US street address and return the matched address, coordinates, and its Census tract, county and state codes in one call.

## Output

Returns the standardized matched address string, latitude and longitude coordinates, and Census geographic identifiers including state FIPS code, county FIPS code, and Census tract code — all derived from a single free-form US street address input.

## 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, up to 200 characters"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-census-address-geographies-0d505807/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)
