$0.005
per call · USD Coin on Base
Japanese address normalization / 日本住所正規化: accept an address with or without a postal code, parse prefecture/city/components, and use local address data for matching. A missing postal code is not inferred by this endpoint; use postal-lookup for reverse lookup. / 郵便番号の有無にかかわらず日本住所を解析し、都道府県・市区町村・構成要素を抽出してローカル住所データで照合します。このエンドポイントは郵便番号を自動補完しないため、逆引きにはpostal-lookupを使用してください。
Endpoint
POST https://api.jpverify.com/jp-address/normalize3
Calls / 30d
1
Unique payers / 30d
Aug 19
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.jpverify.com/jp-address/normalize", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"address": "東京都新宿区西新宿2-8-1",
"response_language": "both"
}),
});
const data = await res.json();curl -X POST \
"https://api.jpverify.com/jp-address/normalize" \
-H "Content-Type: application/json" \
-d '{"address":"東京都新宿区西新宿2-8-1","response_language":"both"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"address_validated": false,
"city": "新宿区",
"geocode_level": 7,
"match_status": "partial",
"normalized": "東京都新宿区西新宿2-8-1",
"parse_confidence": 0.96,
"postal_code": null,
"postal_code_match": null,
"prefecture": "東京都",
"town": "西新宿"
}Payment details
0xe4a4e5b226be71e7b6ed523bc7a91089c770572fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from Japan Address Normalize & similar services
Oneshotagent · Verify Email
win.oneshotagent.com
Email deliverability verification
Oneshotagent · Enrich Email
win.oneshotagent.com
Email enrichment and validation
Strale · Email Validate
api.strale.io
Validate an email address: RFC 5322 syntax, MX records, 5,361 disposable domain detection, role-based address detection (35 patterns), free provider detection, and typo suggestion for common providers (gmial.com ? gmail.com). Returns deliverability assess…