# 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-15).

## Facts

- Endpoint: POST https://x402.agentutility.ai/json-dev-pack
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/json-dev-pack-30b8ec3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9GuUIP-VB5rhwe6ELkT7u

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 json-dev-pack-30b8ec3b -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": {
      "json": {
       "type": [
        "string",
        "object",
        "array"
       ],
       "description": "JSON sample: a JSON string or a pre-parsed object/array. Max 200,000 chars stringified."
      },
      "schema": {
       "type": "object",
       "description": "Optional JSON Schema (draft-07 or 2020-12) to validate the sample against."
      }
     },
     "required": [
      "json"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "types": {
       "type": "object",
       "properties": {
        "format": {
         "type": "string"
        },
        "types": {
         "type": "string"
        }
       }
      },
      "yaml": {
       "type": "object",
       "properties": {
        "target": {
         "type": "string"
        },
        "output": {
         "type": "string"
        }
       }
      },
      "validation": {
       "type": "object",
       "properties": {
        "valid": {
         "type": "boolean"
        },
        "error_count": {
         "type": "integer"
        }
       }
      },
      "composed_of": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "components": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "ok": {
          "type": "boolean"
         },
         "ms": {
          "type": "integer"
         }
        }
       }
      },
      "degraded": {
       "type": "boolean"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "yaml": {
   "output": "id: 7\nname: Ada\njoined_at: 2025-01-02T03:04:05Z\n",
   "target": "yaml"
  },
  "types": {
   "types": "export interface Root {\n  id: number;\n  name: string;\n  joined_at: string;\n}\n",
   "format": "typescript"
  },
  "degraded": false,
  "components": [
   {
    "ms": 3,
    "ok": true,
    "name": "type-inference-from-json"
   },
   {
    "ms": 2,
    "ok": true,
    "name": "json-yaml"
   },
   {
    "ms": 4,
    "ok": true,
    "name": "json-schema-validate"
   }
  ],
  "validation": {
   "valid": true,
   "error_count": 0
  },
  "composed_of": [
   "type-inference-from-json",
   "json-yaml",
   "json-schema-validate"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/json-dev-pack-30b8ec3b/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)
