Trading & Markets
Real-time seed price oracle, marketplace data, on-chain portfolio inspection, transaction verification, agent trust scoring — the read-side of agentic commerce on Base.
7 endpoints in this vertical
Each endpoint is live on Base mainnet. The first curl shows the 402 challenge (free). Sign the challenge with USDC to get the actual response.
| Path | What it does | Method | Price |
|---|---|---|---|
| /api/market-data | Listings, recent sales, top sellers and on-chain stats from the SeedMercado v2 contract. | GET | $0.05 |
| /api/price-oracle | Live seed pricing for autonomous trading and arbitrage agents. | GET | $0.03 |
| /api/portfolio-check | Wallet seed NFT/token portfolio breakdown for any Base address. | GET | $0.05 |
| /api/yield-estimate | Projected yield (lbs/$) for a crop given climate zone and management intensity. | GET | $0.10 |
| /api/tx-verify | Decode and verify any Base transaction. Returns parsed logs, USD value, contract context. | GET | $0.01 |
| /api/agent-trust | Trust score (0-100) for autonomous agents with risk factors and transaction limit recs. | POST | $0.05 |
| /api/seed-lookup | Look up seed varieties by name or keyword. Returns provenance, traits, growing zones. | GET | $0.02 |
Total cost to call every endpoint in this vertical once: $0.310 USDC.
Live demo curl for every endpoint
SeedMercado Marketplace Data
Listings, recent sales, top sellers and on-chain stats from the SeedMercado v2 contract.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/market-data?query=active' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.
Real-Time Seed Price Oracle
Live seed pricing for autonomous trading and arbitrage agents.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/price-oracle?query=heirloom+tomato' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.03 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.
Wallet Portfolio Check
Wallet seed NFT/token portfolio breakdown for any Base address.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/portfolio-check?query=0x24A93e03deD53ac77d06611c763d2e3B4C6aaF40' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.
Agricultural Yield + Revenue Estimate
Projected yield (lbs/$) for a crop given climate zone and management intensity.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/yield-estimate?query=yaupon+zone-8+wildcrafted' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.10 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.
Base Transaction Verifier
Decode and verify any Base transaction. Returns parsed logs, USD value, contract context.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/tx-verify?query=0xfda184a6038984' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.01 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.
AI Agent Trust Scoring
Trust score (0-100) for autonomous agents with risk factors and transaction limit recs.
# 1. Free: see the 402 challenge headers
curl -i -X POST 'https://x402.adametherzlab.com/api/agent-trust' \
-H 'Content-Type: application/json' \
-d '{"query":"0x24A93e03deD53ac77d06611c763d2e3B4C6aaF40"}'
# 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.05 on Base,
# base64-encode and resend as the X-Payment header.
# See /start for the wallet setup walkthrough.
Seed Variety Lookup
Look up seed varieties by name or keyword. Returns provenance, traits, growing zones.
# 1. Free: see the 402 challenge headers curl -i 'https://x402.adametherzlab.com/api/seed-lookup?query=balcony+bounty+sunflower' # 2. Sign EIP-3009 USDC TransferWithAuthorization for $0.02 on Base, # base64-encode and resend as the X-Payment header. # See /start for the wallet setup walkthrough.