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

## Facts

- Endpoint: POST https://x402.agentutility.ai/wikipedia-pageviews
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wikipedia-pageviews-983523dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jP2xN6bo5M02Aax2lFGuD

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 wikipedia-pageviews-983523dd -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
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "title": {
       "type": "string",
       "description": "Wikipedia article title, e.g. 'Artificial intelligence'. Required, max 300 chars."
      },
      "start": {
       "type": "string",
       "description": "Optional window start date, ISO8601 'YYYY-MM-DD' or 'YYYYMMDD'. Defaults to 30 days before end."
      },
      "end": {
       "type": "string",
       "description": "Optional window end date, ISO8601 'YYYY-MM-DD' or 'YYYYMMDD'. Defaults to 2 days ago (pageview data lags)."
      },
      "granularity": {
       "type": "string",
       "description": "Either 'daily' or 'monthly'. Default 'daily'."
      }
     },
     "required": [
      "title"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "title": {
       "type": "string"
      },
      "granularity": {
       "type": "string"
      },
      "start": {
       "type": "string"
      },
      "end": {
       "type": "string"
      },
      "timeseries": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "date": {
          "type": "string"
         },
         "views": {
          "type": "integer"
         }
        }
       }
      },
      "total": {
       "type": "integer"
      },
      "trend_pct": {
       "type": "number"
      },
      "source": {
       "type": "string"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "end": "20260607",
  "start": "20260601",
  "title": "Artificial intelligence",
  "total": 229704,
  "source": "Wikimedia Pageviews REST API",
  "trend_pct": -12.4,
  "timeseries": [
   {
    "date": "2026-06-01",
    "views": 38866
   },
   {
    "date": "2026-06-02",
    "views": 41178
   }
  ],
  "granularity": "daily"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wikipedia-pageviews-983523dd/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)
