Skip to content
clusters: prooflayer · edgemarket · edgefinance · synthforge · mediakit · wordmint · webprobe · locale · comppoint · rollforge · bestiary · statline · matchpoint · retail · agentops · browserworkflow · modelrouter · compose
$ man match-score

/match-score

agentutility / matchpoint / match-score
PRICE / CALL
$0.003
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
matchpoint
CATEGORY
uncategorized
STATUS
live
NAME
match-score scores how similar two values are on a 0-100 scale for fuzzy matching and dedup confidence
SYNOPSIS
POST https://x402.agentutility.ai/match-score
     Content-Type: application/json
     X-PAYMENT:    <signed-transferWithAuthorization>

     { ... }
↳ first call → 402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.
DESCRIPTION

Scores how similar two values are on a 0-100 scale for fuzzy matching and dedup confidence. Compares two values of a given type (company, name, address, email, phone, or text), blending match-key equality, Jaro-Winkler, and token overlap, and reports whether they share a match key. The companion to the match-key endpoints: bucket by key, then rank candidates by score. Deterministic and instant — no external lookups. Use it as a fuzzy match score, string similarity, or record-pair scoring API.

INPUTrequest schema
propertytypedescriptionreq?
astringFirst value.required
bstringSecond value.required
typestringValue type. Default 'text'.
enum: company · name · address · email · phone · text
optional
OUTPUTresponse shape
fieldtypedescription
astring
bstring
typestring
scorestring
same_keystring
normalized_astring
normalized_bstring
EXAMPLEStwo ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/match-score \
  -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-score tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
tags
matchpointmatchscorematch-score
methods
POST
cluster
matchpoint
price
$0.003 USDC per call
ADJACENTother endpoints in matchpoint
endpointdescriptionprice
address-parseParses a freeform US street address into components: number, street, unit, city, state, and zip.$0.005
match-key-addressGenerates a match key for postal addresses with USPS-style standardization so equivalent addresses collide.$0.005
match-key-companyGenerates a deterministic similarity key for company names so different spellings of the same business collide.$0.005
match-key-emailNormalizes email addresses into a match key so aliases of the same inbox collide.$0.005
match-key-nameGenerates a match key for person names so variants of the same person collide.$0.005
match-key-phoneNormalizes phone numbers into a canonical E.164 match key so formatting variants like '(415) 555-0100' and '+1 415-555-0100' collide.$0.005
SEE ALSO
agentutility · matchpoint · x402 · mcp · llms.txt · registry.json · bazaar.x402.org