# Agent Money Map – x402 Agent Economy Snapshot

> Agent Money Map – x402 Agent Economy Snapshot is a paid API for AI agents from x402-seller.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a live snapshot of the x402/agent-economy on Base, including top-selling products, 30-day transaction volume, active sellers, buyer counts, and dead-end categories.

## Facts

- Endpoint: GET https://x402-seller.vercel.app/api/brief
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-money-map-x402-agent-economy-snapshot-0b348798
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H6w6m4fFuL1ZB6l-0bjn2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent-money-map-x402-agent-economy-snapshot-0b348798
```

Example prompt: Pull the latest x402 agent economy snapshot — I want to see what's actually selling on Base, the 30-day volume, how many buyers and sellers are active, and which categories are dead ends.

## When to prefer this

Choose this endpoint when you need a real-time, authoritative summary of x402 agent-economy activity on Base — specifically top-selling products, volume metrics, buyer/seller counts, and failed categories. Prefer it over general crypto analytics when you specifically want micropayment/AI-agent commerce data gated by the x402 payment protocol. It is the canonical 'what is the agent economy doing right now' feed.

## Known failure modes

- Payment not provided or insufficient: 402 Payment Required response, agent must attach x402 USDC payment
- Invalid topic query parameter: may return error or unexpected output
- Service unavailable: Vercel cold-start or upstream data feed outage returns 5xx
- Stale data: snapshot timestamp may lag behind real-time if feed is delayed
- Unsupported HTTP method: only GET/HEAD/DELETE accepted per schema

## How this service works

x402-gated live x402/agent-economy snapshot on Base.

## Output

A JSON snapshot object containing: a list of top-sold products with volume in cents, total 30-day transaction count, network identifier (Base/eip155:8453), total active seller count, 30-day unique buyer count, a list of dead-end categories that failed to gain traction, and a timestamp of when the snapshot was generated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string",
       "description": "Subject for a 1-page original brief, or snapshot for the live x402/agent-economy earnings feed (what sold, volume, dead ends)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "snapshot",
  "sold": [
   {
    "title": "Bitrefill gift cards",
    "volumeCents": 40100000
   },
   {
    "title": "Token Price",
    "volumeCents": 2
   }
  ],
  "tx_30d": 75410000,
  "network": "eip155:8453",
  "sellers": 22000,
  "dead_ends": [
   "AgentBazaar",
   "AGI Alpha",
   "JPEG NFTs to agents"
  ],
  "buyers_30d": 94060,
  "checked_at": "2026-08-29T08:00:00Z",
  "volume_usd_30d": 24240000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-money-map-x402-agent-economy-snapshot-0b348798/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller.vercel.app](https://www.zero.xyz/host/x402-seller.vercel.app/llms.txt)
