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

## Facts

- Endpoint: POST https://x402.agentutility.ai/dependency-provenance
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dependency-provenance-3d488fd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F11X_BXjukwDMg38Wj44e

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 dependency-provenance-3d488fd7 -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": [
      "package"
     ],
     "properties": {
      "repo": {
       "type": "string",
       "description": "Optional 'owner/name' GitHub repo override, used instead of the repo resolved from registry metadata."
      },
      "package": {
       "type": "string",
       "description": "Package name to look up, e.g. 'hono', 'requests', or 'serde'. Max 214 chars."
      },
      "ecosystem": {
       "enum": [
        "npm",
        "pypi",
        "crates"
       ],
       "type": "string",
       "description": "Registry ecosystem. If omitted, scoped names ('@scope/name') are inferred as npm and all other names default to npm."
      }
     }
    },
    "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": {
      "cves": {
       "type": "null"
      },
      "repo": {
       "type": "object",
       "properties": {
        "health": {
         "type": "object",
         "properties": {
          "repo": {
           "type": "string"
          },
          "grade": {
           "type": "string"
          },
          "score": {
           "type": "integer"
          }
         }
        },
        "source": {
         "type": "string"
        },
        "resolved": {
         "type": "string"
        },
        "stars_trend": {
         "type": "object",
         "properties": {
          "repo": {
           "type": "string"
          },
          "history": {
           "type": "array"
          },
          "current_stars": {
           "type": "integer"
          }
         }
        }
       }
      },
      "risk": {
       "type": "object",
       "properties": {
        "score": {
         "type": "integer"
        },
        "risk_level": {
         "type": "string"
        },
        "package_name": {
         "type": "string"
     
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cves": null,
  "repo": {
   "health": {
    "repo": "honojs/hono",
    "grade": "A",
    "score": 90
   },
   "source": "registry_metadata",
   "resolved": "honojs/hono",
   "stars_trend": {
    "repo": "honojs/hono",
    "history": [],
    "current_stars": 20000
   }
  },
  "risk": {
   "score": 5,
   "risk_level": "low",
   "package_name": "hono"
  },
  "stats": {
   "name": "hono",
   "package": "hono",
   "downloads": {
    "last_month": 8000000
   },
   "latest_version": "4.6.0"
  },
  "package": "hono",
  "degraded": false,
  "cves_note": "cve-lookup requires an exact CVE ID and only supports ID-based NVD lookups, not a package-name search, so no CVE lookup was attempted.",
  "ecosystem": "npm",
  "components": [
   {
    "ms": 300,
    "ok": true,
    "name": "npm-package-stats"
   },
   {
    "ms": 1200,
    "ok": true,
    "name": "github-repo-health"
   }
  ],
  "composed_of": [
   "npm-package-stats",
   "package-risk-npm",
   "github-repo-health",
   "github-stars-history"
  ],
  "ecosystem_source": "input"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dependency-provenance-3d488fd7/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)
