← Marketplace

Regulavita

Regulavita is an x402-native service at https://evidence.regulavita.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. 7 endpoints listed.

Base

Offers

OfferEndpointPrice
Compute Python Run
Run bounded Python 3.11 code in an ephemeral isolated sandbox with one x402 payment. This service creates the sandbox, executes the code, captures stdout, stderr, and return code, terminates the sandbox, and returns supplier settlements plus a signed receipt.
/m/bz-evidence-regulavita-com/v1/compute/python-run0.03 USDC
Gtm Form D Company Dossier
Turn one SEC Form D accession into an agent-ready funded-company prospect dossier. Combines the official filing, reported offering facts and related people with fresh web research in one call, then returns source links, hashes, upstream settlement provenance, and a signed receipt. No account or API key.
/m/bz-evidence-regulavita-com/v1/gtm/form-d-company-dossier0.25 USDC
Gtm Form D Funding Leads
Find newly filed SEC Form D private-offering signals for autonomous GTM workflows. Filter by issuer state, industry keyword, and reported amount sold. Returns official links, company context, related people, and a cursor. Form D is a notice, not proof of total funding raised.
/m/bz-evidence-regulavita-com/v1/gtm/form-d-funding-leads0.05 USDC
Ofac Exact Identifier Evidence
Use when an autonomous agent needs signed, auditable payee evidence before or after a payment. Runs an exact-match OFAC SDN and Consolidated lookup for crypto wallets, UIDs, or exact names and returns current U.S. Treasury source hashes and a signed receipt. Exact match only; no fuzzy screening, ownership/control analysis, or sanctions clearance.
/m/bz-evidence-regulavita-com/v1/ofac/exact-identifier-evidence0.05 USDC
Ofac Payment Preflight
Use immediately before an autonomous agent pays an EVM wallet. Checks the destination for an exact identifier match in current official OFAC SDN and Consolidated data, then returns STOP or NO_EXACT_MATCH, freshness, and a signed-evidence upgrade path. Exact-match only; not a complete wallet-risk score, sanctions clearance, or legal advice.
/m/bz-evidence-regulavita-com/v1/ofac/payment-preflight0.01 USDC
Sec Filing Change Signal
Check whether a company filed a new SEC 8-K, 10-Q, or 10-K after a timestamp. Accepts a ticker or CIK and returns a compact filing decision, accession links, and a next-check cursor; no materiality opinion or investment advice.
/m/bz-evidence-regulavita-com/v1/sec/filing-change-signal0.01 USDC
Web Source Snapshot
Fetch one public HTTPS HTML, JSON, XML, or text source and return normalized agent-ready text, optional literal-match excerpts, a content hash, and an Ed25519-signed receipt. No account or API key.
/m/bz-evidence-regulavita-com/v1/web/source-snapshot0.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-evidence-regulavita-com/v1/compute/python-run')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-evidence-regulavita-com/v1/compute/python-run
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …