# agentutility — paid x402 endpoints for autonomous agents

> agentutility — paid x402 endpoints for autonomous agents is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

## Facts

- Endpoint: POST https://x402.agentutility.ai/token-attention-report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-attention-report-57e806eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NcpdZWYiwcfJ7V9PvM9XH

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 token-attention-report-57e806eb -d '<json body>'
```

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker to track, e.g. 'ETH' or '$ETH'. Alphanumeric, up to 15 chars, optional '$' prefix."
      },
      "window": {
       "type": "number",
       "description": "Optional lookback window in hours for the news and volatility legs (1-168, default 48)."
      },
      "contract": {
       "type": "string",
       "description": "Optional 0x-prefixed ERC-20 contract address, echoed back for reference alongside the symbol."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "news": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "sentiment": {
          "type": "string"
         }
        }
       }
      },
      "symbol": {
       "type": "string"
      },
      "contract": {
       "type": "null"
      },
      "degraded": {
       "type": "boolean"
      },
      "components": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ms": {
          "type": "integer"
         },
         "ok": {
          "type": "boolean"
         },
         "name": {
          "type": "string"
         }
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "composed_of": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "window_hours": {
       "type": "integer"
      },
      "interest_trend": {
       "type": "object",
       "properties": {
        "end": {
         "type": "string"
        },
        "start": {
    
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "news": [
   {
    "url": "https://example.com/a1",
    "title": "Ethereum network upgrade ships on schedule",
    "sentiment": "neutral"
   }
  ],
  "symbol": "ETH",
  "contract": null,
  "degraded": false,
  "components": [
   {
    "ms": 900,
    "ok": true,
    "name": "crypto-news"
   },
   {
    "ms": 620,
    "ok": true,
    "name": "twitter-sentiment"
   }
  ],
  "disclaimer": "Data only, not investment advice. This report contains public headlines, sentiment scores, pageview trends, and realized volatility only; it contains no buy/sell signal, price target, or trading recommendation.",
  "composed_of": [
   "crypto-news",
   "twitter-sentiment",
   "token-volatility",
   "wikipedia-pageviews",
   "x-search"
  ],
  "window_hours": 48,
  "interest_trend": {
   "end": "20260706",
   "start": "20260607",
   "title": "Ethereum",
   "trend_pct": 4.2,
   "total_views": 154000
  },
  "mention_volume": 42,
  "social_sentiment": {
   "sample_size": 9,
   "distribution": {
    "neutral": 5,
    "negative": 1,
    "positive": 3
   },
   "average_score": 0.05,
   "overall_sentiment": "neutral"
  },
  "realized_volatility": {
   "days": 30,
   "coingecko_id": "ethereum",
   "daily_volatility_pct": 3.1,
   "annualized_volatility_pct": 59.2
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-attention-report-57e806eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
