# 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.04/call, status unknown (last checked 2026-09-14).

## Facts

- Endpoint: POST https://x402.agentutility.ai/rss-from-anything
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rss-from-anything-652e3c3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lu0YWZlfRlUTW18xjnwv0

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 rss-from-anything-652e3c3b -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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Webpage URL to generate a feed from. Must be http or https."
      },
      "max_items": {
       "type": "number",
       "description": "Maximum number of feed items to return. Optional; 1-200, defaults to 50."
      },
      "feed_title": {
       "type": "string",
       "description": "Title for the generated RSS channel. Optional; defaults to the page's <title>."
      },
      "date_selector": {
       "type": "string",
       "description": "CSS selector for an item's publish date, relative to item_selector. Optional; falls back to the first <time>."
      },
      "item_selector": {
       "type": "string",
       "description": "CSS selector matching each feed item's container element. Optional; enables selector mode over the auto-detect heuristic."
      },
      "link_selector": {
       "type": "string",
       "description": "CSS selector for an item's link, relative to item_selector. Optional; falls back to the first a[href]."
      },
      "title_selector": {
       "type": "string",
       "description": "CSS selector for an item's title, relative to item_selector. Optional; falls back to the first a/h1/h2/h3."
      },
      "description_selector": {
       "type": "string",
       "description": "CSS selector for an item's description, relative to item_selector. Optional; falls back to the first <p>."
      }
     }
    },
    "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": {
      "rss": {
       "type": "string"
      },
      "mode": {
       "type": "string"
      },
      "mime_type": {
       "type": "string"
      },
      "item_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rss": "<?xml version=\"1.0\"?>...",
  "mode": "auto",
  "mime_type": "application/rss+xml",
  "item_count": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rss-from-anything-652e3c3b/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)
