# Agent Money Map – x402 Live Token Price Pulse

> Agent Money Map – x402 Live Token Price Pulse is a paid API for AI agents from x402-seller.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a live on-chain token price snapshot (price, 24h change, network) for Base, gated via the x402 micropayment protocol.

## Facts

- Endpoint: GET https://x402-seller.vercel.app/api/pulse
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-money-map-x402-live-token-price-pulse-7de90862
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kk-CkNEN6EXIz5mX-WmWk

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-live-token-price-pulse-7de90862
```

Example prompt: What's the current price of ETH on Base right now, including its 24-hour percent change?

## When to prefer this

Choose this endpoint when you need a lightweight, real-time single-token price lookup specifically on the Base network, paid via x402 micropayments. It is ideal for AI agents operating in the x402/agent-economy context that need a formatted, human-readable price line alongside raw USD data. Prefer it over heavier exchange APIs when you only need a quick live spot price with 24h change and already support x402 payment flows.

## Known failure modes

- Missing or invalid x402 payment header returns 402 Payment Required
- Unsupported token symbol returns an error or falls back to ETH default
- Network outage or upstream price feed failure returns 5xx error
- Malformed query parameter returns 400 Bad Request
- Payment amount insufficient for the $0.001 USDC gate returns 402

## How this service works

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

## Output

A JSON object containing the token's current USD price, a human-readable one-line price summary string (e.g. 'ETH $4300 (1.25% 24h) on Base.'), the 24-hour percent change, the token symbol, the network identifier (eip155:8453 for Base), and an ISO 8601 timestamp for when the price was recorded.

## 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",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token symbol for a one-line live price, e.g. ETH. Defaults to ETH when omitted."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "usd": 4300,
  "line": "ETH $4300 (1.25% 24h) on Base.",
  "as_of": "2026-08-29T09:18:00.000Z",
  "symbol": "ETH",
  "network": "eip155:8453",
  "usd_24h_change_pct": 1.25
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-money-map-x402-live-token-price-pulse-7de90862/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)
