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

## Facts

- Endpoint: POST https://x402.agentutility.ai/wiki-brief
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wiki-brief-33976d7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hgQ1N6wYWbDex0dHrHqlj

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 wiki-brief-33976d7c -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": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string",
       "description": "Topic, person, place, or concept to brief. 1-300 chars."
      }
     }
    },
    "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": {
      "brief": {
       "type": "string"
      },
      "intro": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "topic": {
       "type": "string"
      },
      "degraded": {
       "type": "boolean"
      },
      "entities": {
       "type": "object",
       "properties": {
        "people": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "locations": {
         "type": "array",
         "items": {
          "type": "string"
         }
        }
       }
      },
      "components": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ms": {
          "type": "integer"
         },
         "ok": {
          "type": "boolean"
         },
         "name": {
          "type": "string"
         }
        }
       }
      },
      "composed_of": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "description": {
       "type": "string"
      },
      "canonical_url": {
       "type": "string"
      },
      "wikidata_item": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "brief": "- Developed the theory of relativity\n- Won the 1921 Nobel Prize in Physics",
  "intro": "Albert Einstein was a German-born theoretical physicist best known for developing the theory of relativity...",
  "title": "Albert_Einstein",
  "topic": "Albert Einstein",
  "degraded": false,
  "entities": {
   "people": [
    "Albert Einstein"
   ],
   "locations": [
    "Ulm",
    "Princeton"
   ]
  },
  "components": [
   {
    "ms": 1100,
    "ok": true,
    "name": "wikipedia-lookup"
   },
   {
    "ms": 2300,
    "ok": true,
    "name": "summarize-text"
   },
   {
    "ms": 1900,
    "ok": true,
    "name": "extract-entities"
   }
  ],
  "composed_of": [
   "wikipedia-lookup",
   "summarize-text",
   "extract-entities"
  ],
  "description": "German-born physicist (1879-1955)",
  "canonical_url": "https://en.wikipedia.org/wiki/Albert_Einstein",
  "wikidata_item": "Q937"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wiki-brief-33976d7c/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)
