← Marketplace

Thomenz

Thomenz is an x402-native service at https://brdata.thomenz.me, 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. 8 endpoints listed.

Base

Offers

OfferEndpointPrice
Boleto Decode
Decode Brazilian boleto payment slips (linha digitável): bank, amount, due date, validity check. Supports bank collection and utility/tax formats.
/m/bz-brdata-thomenz-me/boleto/decode0.005 USDC
Cep :Cep
Brazilian postal code (CEP) lookup with English schema: full address, IBGE city code, coordinates when available.
/m/bz-brdata-thomenz-me/cep/:cep0.002 USDC
Companies Search
Search and segment active Brazilian companies by industry (CNAE, main OR secondary), location, size, age, share capital and name. Returns official registry data with business contact info. Ideal for B2B lead generation and market research on Brazil. Priced per page ($0.015). CNAE accepts 4-7 digit prefixes, masked or not (6201-5/01 = 6201501). MEI contact data is redacted (LGPD).
/m/bz-brdata-thomenz-me/companies/search0.015 USDC
Company :Cnpj
Consolidated official registry profile of any Brazilian company by CNPJ (tax ID): legal name, status, activities (CNAE), address, incorporation date. Aggregated from Brazilian Federal Revenue public data in a single call.
/m/bz-brdata-thomenz-me/company/:cnpj0.005 USDC
:Cnpj Full
Full due-diligence profile of a Brazilian company: everything in the basic profile plus the complete quadro societário (QSA) — partner name, role and entry date, LGPD-safe with no CPF — and the same 5-registry screen as /risk: debarment (CEIS), anti-corruption (CNEP), leniency, impeded non-profits (CEPIM) and the forced-labor 'Lista Suja', with a verdict and 0-100 risk score. `sources_checked` nam
/m/bz-brdata-thomenz-me/company/:cnpj/full0.03 USDC
Company :Cnpj
Brazilian regulatory risk & compliance screening of a company by CNPJ across 5 federal registries: debarment (CEIS), anti-corruption (CNEP), impeded non-profits (CEPIM), leniency (Acordos de Leniência) and forced-labor (Lista Suja, MTE). Returns a verdict + 0–100 risk score, each hit flagged active or historical, plus per-source data_as_of. The Brazilian complement global OFAC/EU/UK/UN + PEP scree
/m/bz-brdata-thomenz-me/risk/company/:cnpj0.015 USDC
Tender Search
Search Brazilian public procurement tenders (PNCP) by keyword. Returns normalized tender references (CNPJ/year/sequential, control number, PNCP URL) ready for detail lookups.
/m/bz-brdata-thomenz-me/tender/search0.05 USDC
Validate Batch
Batch-validate Brazilian identifiers: CPF, CNPJ (incl. new alphanumeric format), PIS, license plates, Pix keys. Up to 100 per call.
/m/bz-brdata-thomenz-me/validate/batch0.001 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-brdata-thomenz-me/boleto/decode')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-brdata-thomenz-me/boleto/decode
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …