← Marketplace

Theaslangroupllc

Theaslangroupllc is an x402-native service at https://compliancepulse.theaslangroupllc.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. 3 endpoints listed.

Base

Offers

OfferEndpointPrice
Screen Sanctions
Is this person or company sanctioned? Screens a name against the live US Treasury OFAC SDN and Consolidated (non-SDN) lists — sanctions screening, watchlist check, KYC/AML pre-check, counterparty screening before a payment. Fuzzy-matches primary names AND every OFAC alias, so transliteration and word-order variants still hit. Deterministic: no LLM. Returns official OFAC rows verbatim (programs, SD
/m/bz-compliancepulse-theaslangroupllc-com/api/screen/sanctions0.02 USDC
Validate Lei
Who is this company, officially? Global LEI lookup and legal-entity search against GLEIF, the ISO 17442 registry behind KYB, MiFID and EMIR reporting. Verify an LEI's checksum and registration status, or search 2.9M+ entities by name and country to find the right identifier. Flags LAPSED, DUPLICATE and RETIRED registrations that a naive first-hit lookup would wire into a KYB record. Deterministic:
/m/bz-compliancepulse-theaslangroupllc-com/api/validate/lei0.02 USDC
Validate Vat
Is this EU VAT number valid? Live VIES check against the European Commission's official VAT Information Exchange System — validate a European VAT id, verify a business tax id before invoicing, confirm B2B reverse-charge / zero-rating eligibility. Returns the registered trader name and address where the member state discloses them. Deterministic: no LLM. Distinguishes a genuinely invalid number fro
/m/bz-compliancepulse-theaslangroupllc-com/api/validate/vat0.01 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-compliancepulse-theaslangroupllc-com/api/screen/sanctions')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-compliancepulse-theaslangroupllc-com/api/screen/sanctions
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …