← Marketplace

Resetparatodos

Resetparatodos is an x402-native service at https://api.resetparatodos.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. 10 endpoints listed.

Base

Offers

OfferEndpointPrice
Cnpj Validate
Deterministically validate a Brazilian CNPJ (company taxpayer ID): format and both check digits (mod-11). Supports the traditional numeric format and the alphanumeric format in force since July 2026. Structural validation only.
/m/bz-api-resetparatodos-com/x402/v1/brazil/cnpj/validate0.02 USDC
Clabe Validate
Deterministically validate a Mexican CLABE (18-digit interbank account key): length, check digit, and issuing bank by prefix. Structural validation only.
/m/bz-api-resetparatodos-com/x402/v1/clabe/validate0.004 USDC
Company Verify
Verify a Mexican company or individual by RFC against official public sources: SAT blacklist 69-B (definitive/presumed), article 69 lists (firm, not-located, cancelled seals), public-procurement sanctions, and sanctioned suppliers. Returns a hash-versioned Verification Record with sources and dates.
/m/bz-api-resetparatodos-com/x402/v1/company/verify0.4 USDC
Fel Parse
Parse a Guatemalan FEL electronic invoice (DTE) XML into a consistent JSON object: document type, issue date, currency, issuer (NIT/name), receiver, grand total, tax phrases and the SAT authorization number when present.
/m/bz-api-resetparatodos-com/x402/v1/guatemala/fel/parse0.03 USDC
Fel Validate
Validate a Guatemalan FEL electronic invoice (DTE) XML against the official SAT XML schema (GT_Documento). Returns whether it is schema-valid and the schema errors if not. Structural/schema validation only.
/m/bz-api-resetparatodos-com/x402/v1/guatemala/fel/validate0.03 USDC
Lei Verify
Verify a Legal Entity Identifier (LEI) against GLEIF: confirms whether the LEI exists and returns its registration status, entity status, legal name and jurisdiction as published by GLEIF. Global counterparty (KYB) anchor.
/m/bz-api-resetparatodos-com/x402/v1/lei/verify0.03 USDC
Rfc Validate
Deterministically validate a Mexican RFC (taxpayer ID): format, person type (individual/company), embedded date, and check digit. Structural validation only.
/m/bz-api-resetparatodos-com/x402/v1/rfc/validate0.02 USDC
V1 Screen
Screen a person or company name against international sanctions (US OFAC SDN + Consolidated, EU, UK), Politically Exposed Persons (PEP: national politicians of 31 countries, sourced from Wikidata), and national lists (Mexico: SAT 69/69-B and sanctioned suppliers; Brazil, Colombia, Argentina, Dominican Republic). Fuzzy name + alias matching with a 0-100 score. Every hit and source is stamped with l
/m/bz-api-resetparatodos-com/x402/v1/screen0.1 USDC
Company Verify
Verify a UK company by its Companies House number (e.g. 00445790) or by name against the official UK register (Companies House). Returns the company profile: registered name, company status (active/dissolved/liquidation/…), company type, incorporation date, jurisdiction, registered office address and SIC activity codes. Does not include officers or persons with significant control (personal data).
/m/bz-api-resetparatodos-com/x402/v1/uk/company/verify0.03 USDC
Sec Verify
Verify a US SEC-registered entity via EDGAR by CIK or ticker: confirms it exists and returns name, CIK, SIC industry, entity type, state of incorporation, tickers/exchanges and recent filings (including the latest 10-K and 10-Q dates). Public SEC data.
/m/bz-api-resetparatodos-com/x402/v1/us/sec/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-resetparatodos-com/x402/v1/brazil/cnpj/validate')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-api-resetparatodos-com/x402/v1/brazil/cnpj/validate
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …