← Marketplace

Workers

Workers is an x402-native service at https://toolsmith-api.dassad10.workers.dev, 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. 5 endpoints listed.

Base

Offers

OfferEndpointPrice
Crypto Gas
Current gas price and latest block for Base or Ethereum mainnet, straight from public RPC. Fresh within 15 seconds. JSON response. $0.002 USDC per call, pay via x402, no API key.
/m/bz-toolsmith-api-dassad10-workers-dev/t/crypto/gas0.002 USDC
Email Validate
Email verification and deliverability check without sending anything: syntax, MX records, disposable-domain detection (121k+ known domains), role-account and free-provider flags. JSON verdict with a bounce/deliverability risk level. Validate emails for signup fraud prevention, list hygiene and lead qualification. $0.004 USDC per call, pay via x402, no API key.
/m/bz-toolsmith-api-dassad10-workers-dev/t/email/validate0.004 USDC
Fx Rates
Foreign exchange reference rates from the European Central Bank. Base currency plus optional symbols filter. Updated daily on ECB schedule. JSON response. $0.002 USDC per call, pay via x402, no API key.
/m/bz-toolsmith-api-dassad10-workers-dev/t/fx/rates0.002 USDC
Web Search
Keyless web search for agents: pass a query, get a concise web-grounded answer plus the top source results (title, URL, snippet). Live web access, no API key or account needed. JSON response. $0.008 USDC per call, pay via x402, no API key.
/m/bz-toolsmith-api-dassad10-workers-dev/t/web/search0.008 USDC
Youtube Transcript
Full plain-text transcript of a YouTube video, de-duplicated and cleaned from the captions. Accepts a video id or URL. Ideal for feeding video content to LLMs. JSON response. $0.01 USDC per call, pay via x402, no API key.
/m/bz-toolsmith-api-dassad10-workers-dev/t/youtube/transcript0.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-toolsmith-api-dassad10-workers-dev/t/crypto/gas')
// 402 challenge signed and settled automatically; response includes Payment-Receipt

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/bz-toolsmith-api-dassad10-workers-dev/t/crypto/gas
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …