← Marketplace

Jpverify

Jpverify is an x402-native service at https://api.jpverify.com, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 12 endpoints listed.

Base

Offers

OfferEndpointPrice
Jp Address Geocode
Japanese forward geocoding from an address to coordinates. Keywords: Japan geocoder, address to coordinates, building-level geocode, Jageocoder, chome, block, lot, house. Returns provider-neutral local candidates, coordinates, address IDs, hierarchy levels, and partial-match warnings. Level 6 is chome, level 7 is block, and level 8 is a building or house node when present in the dictionary.
/m/bz-api-jpverify-com/jp-address/geocode0.005 USDC
Jp Address Normalize
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を使用してください。
/m/bz-api-jpverify-com/jp-address/normalize0.005 USDC
Jp Address Parse
Japanese address parser and component extraction. Keywords: Japanese address parser, address components, chome, block, lot, house, 丁目, 番地, 号. Parse a Japanese address into components without returning postal validation or geocoding; local postal prefix evidence may safely recover a unique town or report ambiguity. / 日本住所を構造化します。郵便番号の検証結果・ジオコーディングは返しませんが、町域の一意な前方一致による補完・曖昧性判定のためローカル郵便データを内部参照する場合があ
/m/bz-api-jpverify-com/jp-address/parse0.005 USDC
Jp Address Postal Lookup
Japanese postal-code lookup and reverse lookup. Keywords: Japanese postal lookup, Japan Post postal code, postal code reverse lookup, 日本郵便番号検索. Use a postal code or prefecture/city/ward/town components against the local Japan Post snapshot. / 通过邮编或都道府县、市区町村、区、町名字段,在本地 Japan Post 数据中进行日本邮编反查。
/m/bz-api-jpverify-com/jp-address/postal-lookup0.001 USDC
Jp Address Validate
Japanese address validation and quality decision. Keywords: Japanese address validation, address conflict, address quality, partial match, 日本住所検証. Validate parser, postal, and geocoder evidence using one address policy, returning exact, partial, ambiguous, conflict, or unverified status with the accepted hierarchy and reasons. / 使用统一规则合并解析、邮编和地理编码证据,并返回完全一致、部分一致、歧义、冲突或未验证状态。
/m/bz-api-jpverify-com/jp-address/validate0.005 USDC
Jp Company Filings
Search EDINET filing metadata with official evidence references. / 公式根拠付きでEDINET提出書類を検索します。
/m/bz-api-jpverify-com/jp-company/filings0.01 USDC
Jp Company Report
Japanese company KYB pre-check / 日本企業KYB事前確認: return corporate number, registered name and address, active/closed registry status, match evidence, and risk flags from Japan's NTA data. Not full KYC or KYB. / 国税庁データに基づき、法人番号、法人名、住所、活動状態、一致根拠、リスクフラグを返します。完全なKYC・KYBではありません。
/m/bz-api-jpverify-com/jp-company/report0.05 USDC
Jp Company Verify Batch
Batch Japanese company verification / 日本企業法人番号一括検証: verify up to 10 company names, corporate numbers, or addresses against Japan's NTA registry in one paid request. / 1回の有料リクエストで最大10件の会社名・法人番号・住所を国税庁データと照合します。
/m/bz-api-jpverify-com/jp-company/verify-batch0.05 USDC
Jp Invoice Check
Japanese billing-invoice issuer check / 請求書発行者照合: verify a T-number, compare issuer name and address with Japan's NTA qualified-invoice and corporate registries, and return OCR, registry, and resolved issuer fields. Phone numbers are not compared because they are not published in the NTA corporate registry. / T番号を検証し、発行者名・住所を国税庁の適格請求書および法人番号データと比較して、OCR値・登記値・採用値を返します。国税庁の法人番号データには電話番号がないため、電話番号は比較
/m/bz-api-jpverify-com/jp-invoice/check0.03 USDC
Jp Invoice Verify
Japanese qualified-invoice verification / 適格請求書・インボイス登録番号検証: validate a T+13 digit registration number against Japan's NTA registry and return registered, cancelled, or not-found status, corporate number, and dates. / T+13桁の適格請求書登録番号を国税庁データと照合し、登録・取消・未検出の状態、法人番号、日付を返します。
/m/bz-api-jpverify-com/jp-invoice/verify0.01 USDC
Jp Invoice Verify Batch
Batch Japanese qualified-invoice verification / 適格請求書登録番号一括検証: verify up to 10 T+13 digit invoice registration numbers against Japan's NTA registry for accounting and AP workflows. / 最大10件のT+13桁インボイス登録番号を国税庁データと照合し、会計・買掛金処理に利用できます。
/m/bz-api-jpverify-com/jp-invoice/verify-batch0.05 USDC
Jp Regulated Entity Verify
Verify a Japanese FSA-regulated entity across the three V1 covered categories. / 日本の金融庁対象三分類で法人を照合します。
/m/bz-api-jpverify-com/jp-regulated-entity/verify0.03 USDC

Machine-readable: openapi.json with x-payment-info offers.

Try it live

Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.

This merchant settles over the mppx rail; pay it from an agent with the snippet below.

Pay with an agent

Any MPP or x402-compatible client works. With mppx, payment is automatic:

import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'

const mppx = Mppx.create({
  methods: [evm({
    account: privateKeyToAccount(process.env.KEY),
    currencies: [evm.assets.base.USDC],
  })],
})

const res = await mppx.fetch('https://api.meshgateway.co/m/bz-api-jpverify-com/jp-address/geocode')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-api-jpverify-com/jp-address/geocode
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …