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

## Facts

- Endpoint: POST https://x402.agentutility.ai/xbrl-financials
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/xbrl-financials-48884acb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PoFdyUFw8adtiWhCJvcz3

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 xbrl-financials-48884acb -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": {
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "unit": {
       "enum": [
        "USD",
        "USD/shares",
        "shares",
        "any"
       ],
       "type": "string",
       "description": "Filter values to one unit. Default 'any'."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
      },
      "fy_only": {
       "type": "boolean",
       "description": "If true, only fiscal-year (10-K) values are returned, skipping quarterly 10-Q data. Default false."
      },
      "metrics": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Aliases of financial metrics to return, e.g. ['revenue', 'net_income', 'eps_diluted', 'total_assets', 'cash']. See available_metric_aliases in response. Default: a curated set."
      },
      "limit_per_metric": {
       "type": "number",
       "description": "Max datapoints returned per metric. 1-50. Default 10 (most-recent-first)."
      }
     }
    },
    "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": {
      "cik": {
       "type": "string"
      },
      "series": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "unit": {
          "type": "string"
         },
         "label": {
          "type": "string"
         },
         "metric": {
          "type": "string"
         },
         "description": {
          "type": "string"
         },
         "xbrl_concept": {
          "type": "string"
         }
        }
       }
      },
      "source": {
       "type
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "series": [
   {
    "unit": "USD",
    "label": "Revenues",
    "metric": "revenue",
    "description": "Amount of revenue recognized from goods sold, services rendered, insurance premiums, or other activities that constitute an earning process.",
    "xbrl_concept": "Revenues"
   }
  ],
  "source": "SEC EDGAR Company Facts (XBRL)",
  "ticker": "AAPL",
  "company_name": "Apple Inc.",
  "requested_metrics": [
   "revenue",
   "net_income"
  ],
  "available_metric_aliases": [
   "revenue",
   "net_income",
   "eps_basic",
   "eps_diluted",
   "total_assets",
   "cash"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/xbrl-financials-48884acb/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)
