single-seller due-diligence lookup (0.001 USDC, on-demand per-wallet): live Base USDC b…
single-seller due-diligence lookup (0.001 USDC, on-demand per-wallet): live Base USDC balance + 30d settlement attestation (tx_30d/senders_30d) + address activity + PayAI directory entries/domains + public-DNS reachability + machine-readable verdict ADD_TO_AL…
by loop2-quickstart.manhliemcn4euwlu.workers.dev · verified provider · updated 2026-09-27
What it does
single-seller due-diligence lookup (0.001 USDC, on-demand per-wallet): live Base USDC balance + 30d settlement attestation (tx_30d/senders_30d) + address activity + PayAI directory entries/domains + public-DNS reachability + machine-readable verdict ADD_TO_ALLOWLIST/REVIEW/NO_PRINCIPAL, for buyer OAP/allowlist flows on any third-party seller
Use with an agent
- Discover. Agents find this listing with
GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP toolsearch_resources, or/discovery/resources. - Inspect. Fetch
/resources/20387.jsonfor the price and payment options. - Pay. Call
GET https://loop2-quickstart.manhliemcn4euwlu.workers.dev/mkt/seller. The provider answers402with its payment requirements. An x402 client signs one of the options below and retries withPAYMENT-SIGNATURE. - Execute. The provider returns
200with the data. Agent Bazaar is not in the request path and never sees your payment.
For humans
You don't need an account or an API key; you need a wallet holding a small amount of USDC on Base, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.
Pricing & payment
- Price
- $0.001 / request
- Protocol
- x402 v2
- Auth
- No account or API key. Pay per request.
- Networks
- Base
x402 payment requirements
| Scheme | Network | Asset | Amount | Pay to | Timeout |
|---|---|---|---|---|---|
| exact | Base eip155:8453 | USDC | $0.001 | 0xd34e4A6706ff438B5EeCf2601Ed73e33C7c005b1 | 1800s |
accepts[] (raw JSON)
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xd34e4A6706ff438B5EeCf2601Ed73e33C7c005b1",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"amountUsd": 0.001,
"maxTimeoutSeconds": 1800
}
]Examples
curl "https://loop2-quickstart.manhliemcn4euwlu.workers.dev/mkt/seller"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paidconst res = await fetch("https://loop2-quickstart.manhliemcn4euwlu.workers.dev/mkt/seller");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}import httpx
res = httpx.get("https://loop2-quickstart.manhliemcn4euwlu.workers.dev/mkt/seller")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerDetails
- Provider
- loop2-quickstart.manhliemcn4euwlu.workers.dev
- Endpoint
- https://loop2-quickstart.manhliemcn4euwlu.workers.dev/mkt/seller
- Machine-readable
/resources/20387.json