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

## Facts

- Endpoint: POST https://x402.agentutility.ai/rule-of-40-calculator
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rule-of-40-calculator-c851ffd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KMHsKz4WxdPZd-kyDaeWX

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 rule-of-40-calculator-c851ffd9 -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": {
      "arr": {
       "type": "number",
       "description": "Annual recurring revenue."
      },
      "growth_rate_pct": {
       "type": "number",
       "description": "Annual ARR growth rate percent."
      },
      "gross_margin_pct": {
       "type": "number",
       "description": "Gross margin percent."
      },
      "net_revenue_retention_pct": {
       "type": "number",
       "description": "Net revenue retention percent."
      },
      "burn_multiple": {
       "type": "number",
       "description": "Net burn divided by net new ARR. Optional."
      },
      "magic_number": {
       "type": "number",
       "description": "Sales efficiency magic number. Optional."
      },
      "ebitda_margin_pct": {
       "type": "number",
       "description": "EBITDA margin percent for rule-of-40. Defaults to 0 when omitted."
      },
      "logo_churn_pct": {
       "type": "number",
       "description": "Annual logo churn percent. Optional."
      }
     },
     "required": [
      "arr",
      "growth_rate_pct",
      "gross_margin_pct",
      "net_revenue_retention_pct"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "calculator": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "grade": {
       "type": "string"
      },
      "recommendation": {
       "type": "string"
      },
      "metrics": {
       "type": "object",
       "properties": {
        "arr": {
         "type": "integer"
        },
        "rule_of_40_pct": {
         "type": "integer"
        },
        "net_revenue_retention_pct": {
         "type": "integer"
        },
        "burn_multiple": {
         "type": "number"
        },
        "magic_number": {
         "type": "number"
        }
       }
      },
      "drivers": {
       "type": "array"
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "strong",
  "score": 74.2,
  "source": "deterministic in-process finance calculator; no upstream API",
  "drivers": [
   {
    "name": "rule_of_40",
    "note": "40 rule-of-40 score",
    "score": 85,
    "weight": 0.25
   }
  ],
  "metrics": {
   "arr": 4800000,
   "magic_number": 0.9,
   "burn_multiple": 1.2,
   "rule_of_40_pct": 40,
   "net_revenue_retention_pct": 118
  },
  "warnings": [],
  "calculator": "saas-metrics-score",
  "recommendation": "Proceed with standard diligence and covenant checks."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rule-of-40-calculator-c851ffd9/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)
