$ man match-key-address
/match-key-address
PRICE / CALL
$0.005
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
matchpointCATEGORY
uncategorized
STATUS
● live
NAME
match-key-address — generates a match key for postal addresses with usps-style standardization so equivalent addresses collide
SYNOPSIS
POST https://x402.agentutility.ai/match-key-address
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Generates a match key for postal addresses with USPS-style standardization so equivalent addresses collide. Expands street types (St to Street), directionals (N to North), and unit designators (Apt/Ste/# to unit), then builds a stable key so '123 Main St Apt 4' and '123 Main Street #4' collide. Deterministic and instant — no geocoding or external lookups. Use it for postal address dedup and address record linkage.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| address | string | Freeform US street address. | required |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| input | string | — |
| normalized | string | — |
| match_key | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/match-key-address \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the match-key-address tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- matchpointmatchkeyaddressmatch-key-address
- methods
- POST
- cluster
- matchpoint
- price
- $0.005 USDC per call
ADJACENT — other endpoints in matchpoint
| endpoint | description | price |
|---|---|---|
| address-parse | Parses a freeform US street address into components: number, street, unit, city, state, and zip. | $0.005 |
| match-key-company | Generates a deterministic similarity key for company names so different spellings of the same business collide. | $0.005 |
| match-key-email | Normalizes email addresses into a match key so aliases of the same inbox collide. | $0.005 |
| match-key-name | Generates a match key for person names so variants of the same person collide. | $0.005 |
| match-key-phone | Normalizes phone numbers into a canonical E.164 match key so formatting variants like '(415) 555-0100' and '+1 415-555-0100' collide. | $0.005 |
| match-score | Scores how similar two values are on a 0-100 scale for fuzzy matching and dedup confidence. | $0.003 |
SEE ALSO