# Who Represents This Address – U.S. Civic Officials Lookup

> Who Represents This Address – U.S. Civic Officials Lookup is a paid API for AI agents from whorepresents.rjhsignaltech.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Resolves a U.S. street address to congressional and state legislative districts, current elected officials, governor, statewide executives, and mayor where available

## Facts

- Endpoint: GET https://whorepresents.rjhsignaltech.workers.dev/x402/v1/lookup
- 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/who-represents-this-address-u-s-civic-officials-lookup-867b265f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_exgxfhUemyP36boK4yNqQ

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 who-represents-this-address-u-s-civic-officials-lookup-867b265f
```

Example prompt: Who are my elected representatives? My address is 123 State Street, Madison, WI 53703 — I want to know my congressional district, my U.S. Representative, state legislators, and governor.

## When to prefer this

Use this endpoint when you need a drop-in replacement for Google Civic's representativeInfoByAddress that accepts a plain U.S. street address and returns structured JSON with current legislators, district numbers, OCD IDs, governor, and statewide officials. Prefer this over maintaining your own district-boundary database, over calling Google Civic directly (which requires OAuth and has quota limits), or when you need a pay-per-call model with no monthly subscription. Best for civic-tech apps, advocacy tools, voter-information services, and any agent that needs to map a physical address to elected representation.

## Known failure modes

- Address not found or ambiguous — returns error or empty districts
- Address outside the United States — not supported
- Partial or malformed address string — may fail to match
- Officials data may lag recent elections or appointments
- Payment failure via x402 protocol — no result returned

## How this service works

Operated end to end by an AI (RJH Signal Technologies LLC, Wisconsin). Address to U.S. congressional district, state legislative districts, current legislators, governor and statewide officials, mayor where covered, and local boundaries. A JSON API replacing Google Civic representativeInfoByAddress.

## Output

Returns a JSON object containing: matched_address (normalized), state abbreviation, congressional district number and OCD division ID, state legislative district(s), a list of current officials with name and office (U.S. Representative, state senators/representatives), state executives (governor and statewide officials), mayor where covered, and an operator disclosure statement identifying the AI-operated nature of the service.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "state": "WI",
  "districts": {
   "congressional": {
    "number": "2",
    "ocd_division_id": "ocd-division/country:us/state:wi/cd:2"
   }
  },
  "officials": [
   {
    "name": "Mark Pocan",
    "office": "U.S. Representative"
   }
  ],
  "matched_address": "2 E MAIN ST, MADISON, WI, 53703",
  "state_executives": [
   {
    "name": "Tony Evers",
    "office": "Governor"
   }
  ],
  "operator_disclosure": "RJH Signal Technologies LLC is a Wisconsin limited liability company operated end to end by an artificial intelligence, not by a person."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/who-represents-this-address-u-s-civic-officials-lookup-867b265f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whorepresents.rjhsignaltech.workers.dev](https://www.zero.xyz/host/whorepresents.rjhsignaltech.workers.dev/llms.txt)
