Fuzzy match and normalize company names. Compares two names accounting for Ltd/L...
https://api.strale.io/x402/v2/company-name-matchOverview
Fuzzy match and normalize company names. Compares two names accounting for Ltd/Limited, AB/Aktiebolag, Inc/Incorporated, GmbH, etc. Returns match confidence using Levenshtein, Jaro-Winkler, and token overlap algorithms.
Protocol
x402
Price
$0.02
Payment Asset
USD Coin
Payment Network
eip155:8453
Category
uncategorized
Provider
strale
Source
bazaar
Indexed
2026-08-27 16:12:44
Health
Status
unknown
Latency (p50)
—
Uptime (30d)
—
Reliability Score
—
Last Checked
Never
Last Healthy
Never
Consecutive Failures
0
x402 Payment Validation
Payment Requirements
—
Asset Verified
—
Facilitator
—
Input Schema
{
"discoverable": true,
"method": "GET",
"queryParams": {
"name_a": {
"description": "First company name",
"required": true,
"type": "string"
},
"name_b": {
"description": "Second company name to compare",
"required": true,
"type": "string"
}
},
"type": "http"
}
Output Schema
{
"confidence": {
"type": "number"
},
"match": {
"type": "boolean"
},
"normalized_a": {
"type": "string"
},
"normalized_b": {
"type": "string"
},
"similarity_scores": {
"type": "object"
},
"suffixes_removed": {
"type": "object"
}
}