← Marketplace

Theaslangroupllc

Theaslangroupllc is an x402-native service at https://shopperpulse.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
Safety Merchant
Know Your Merchant (KYM) trust score: pass a merchant domain and get a deterministic 0-100 trust score with a band (high/medium/low/very_low/avoid) and human-readable reasons. Live signals: domain age from the RDAP registry of record, malware/phishing blocklist verdict via Cloudflare Security DNS, TLS certificate health, mail capability, and refund/privacy/contact page presence. The merchant-side
/m/bz-shopperpulse-theaslangroupllc-com/api/safety/merchant0.02 USDC
Safety Recalls
Product safety & recall check for shopping agents: pass a product name, brand, or category and get official government recall matches — US CPSC plus the OECD GlobalRecalls feed covering the EU Safety Gate and 30+ jurisdictions. Deterministic lookup, no LLM: hazard, remedy, country, date, and a link to the official notice for every match. Check the toy before your agent buys the toy.
/m/bz-shopperpulse-theaslangroupllc-com/api/safety/recalls0.015 USDC
Shopper Trip
Birdie, the AI personal shopper: POST a shopping list (up to 3 items, free text or structured) and get back 3 best-fit picks per item plus a stacked savings plan — loyalty %, coupons, discounted gift cards, and the right credit card — researched live across the PulseNetwork shopping fleet. Best fit to your spec wins, not the cheapest listing.
/m/bz-shopperpulse-theaslangroupllc-com/api/shopper/trip0.25 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-shopperpulse-theaslangroupllc-com/api/safety/merchant')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

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