Skip to content
Public demo — no signup, no API key

Try the RevAddress Intelligence API

Paste any US address. We geocode it through the US Census rooftop geocoder, pull Census ACS 5-year tract demographics, and compute a transparent trust score. Every penalty is disclosed. The scoring is public — see the spec.

Try:

Rate limited to 5 requests/min per IP. After 3 calls per hour, a Cloudflare Turnstile bot-check is required. Data sources: US Census Geocoder + Census ACS 5-year (free, public, non-commercial-restricted). Want unmetered access + USPS DPV/CMRA/vacancy signals? Grab a free API key.

Trust score

Grade

Paste an address on the left. We geocode, enrich, and score in about 1 second.

Growth+ signal · locked

Fraud risk 0.00 – 1.00

Upgrade

The free demo uses Census signals only. Growth+ API keys unlock a deterministic fraud risk score built from 6 weighted USPS-grade signals — the full chargeback-correlated model used in production checkouts.

  • cmra+0.40
  • undeliverable+0.35
  • vacant+0.20
  • general_delivery+0.15
  • partial_match+0.10
  • po_box+0.05

Emits checkout.risk_detected webhook at score ≥ 0.60.

Unlock fraud risk →
Full JSON response
{
  "input": { "streetAddress": "1 APPLE PARK WAY", "city": "CUPERTINO", "state": "CA", "ZIPCode": "95014" },
  "geocode": {
    "coordinates": { "lat": 37.33451, "lng": -122.00898, "accuracy": "rooftop" },
    "census": { "tract": "508107", "block": "1017", "county_fips": "085", "state_fips": "06" },
    "match_type": "Exact",
    "source": "census_geocoder"
  },
  "demographics": {
    "census_tract": "06085508107",
    "demographics": {
      "median_household_income": 186458,
      "population": 5012,
      "housing_units": 1870,
      "vacancy_rate": 0.032,
      "owner_occupied_pct": 0.68,
      "median_year_built": 1988
    },
    "vintage": "2022_acs5",
    "source": "census_acs_5yr"
  },
  "trust": {
    "score": 100,
    "grade": "A",
    "label": "high_trust",
    "description": "High-trust address. Rooftop-matched, stable tract, no adverse ACS signals.",
    "signals": []
  },
  "summary": "This address scored 100/100 (A — high trust). Census Geocoder returned rooftop coordinates. Tract median household income $186,458. Vacancy rate 3.2%. Population 5,012. No adverse signals detected."
}

Drop into your stack

Same endpoint, three languages. No auth header needed on /api/demo/intelligence.

curl "https://api.revaddress.com/api/demo/intelligence?streetAddress=1+Apple+Park+Way&city=Cupertino&state=CA&ZIPCode=95014"

# {
#   "trust": { "score": 100, "grade": "A", "label": "high_trust", "signals": [] },
#   "geocode": { "coordinates": { "lat": 37.33451, "lng": -122.00898, "accuracy": "rooftop" }, ... },
#   "demographics": { "demographics": { "median_household_income": 186458, "vacancy_rate": 0.032, ... } },
#   "summary": "This address scored 100/100 (A — high trust). ..."
# }