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

## Facts

- Endpoint: POST https://x402.agentutility.ai/receipt-to-ledger
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/receipt-to-ledger-f149c12e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XmXzvAVKPeHvuSLpircbH

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 receipt-to-ledger-f149c12e -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": {
      "image_url": {
       "type": "string",
       "description": "URL of the receipt photo to parse. Must be http or https. Provide this or 'file'."
      },
      "file": {
       "type": "string",
       "description": "Alias for image_url — a http/https URL to the receipt photo. Provide this or 'image_url'."
      },
      "target_currency": {
       "type": "string",
       "description": "3-letter ISO 4217 code to normalize the receipt total into, e.g. 'USD'. Optional, default 'USD'."
      }
     },
     "required": []
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "input": {
       "type": "object",
       "properties": {
        "image_url": {
         "type": "string"
        },
        "target_currency": {
         "type": "string"
        }
       }
      },
      "ocr": {
       "type": "object",
       "properties": {
        "model": {
         "type": "string"
        },
        "raw_text": {
         "type": "string"
        },
        "vendor_name": {
         "type": "string"
        },
        "vendor_address": {
         "type": "string"
        },
        "vendor_phone": {
         "type": "null"
        },
        "receipt_date": {
         "type": "string"
        },
        "receipt_time": {
         "type": "null"
        },
        "payment_method": {
         "type": "null"
        },
        "receipt_number": {
         "type": "null"
        }
       }
      },
      "line_items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "description": {
          "type": "string"
         },
         "qty": {
          "type": "integer"
         },
         "unit_price": {
          "type": "number"
         },
         "total": {
          "type": "number"
         }
        }
       }
      },
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ocr": {
   "model": "qwen3-5-9b",
   "raw_text": "Corner Cafe\n1 Market St\nCoffee 4.50\nTotal 4.50",
   "vendor_name": "Corner Cafe",
   "receipt_date": "2026-07-01",
   "receipt_time": null,
   "vendor_phone": null,
   "payment_method": null,
   "receipt_number": null,
   "vendor_address": "1 Market St"
  },
  "input": {
   "image_url": "https://agentutility.ai/icon-512.png",
   "target_currency": "USD"
  },
  "totals": {
   "tax": 0,
   "tip": 0,
   "total": 4.5,
   "currency": "EUR",
   "subtotal": 4.5,
   "converted": {
    "rate": 1.08,
    "amount": 4.86,
    "currency": "USD",
    "rate_date": "2026-07-05"
   },
   "target_currency": "USD"
  },
  "degraded": false,
  "entities": {
   "entities": {
    "dates": [
     "2026-07-01"
    ],
    "organizations": [
     "Corner Cafe"
    ]
   },
   "total_entities": 2
  },
  "components": [
   {
    "ms": 3200,
    "ok": true,
    "name": "receipt-parser"
   },
   {
    "ms": 900,
    "ok": true,
    "name": "extract-entities"
   },
   {
    "ms": 180,
    "ok": true,
    "name": "exchange-rates"
   }
  ],
  "line_items": [
   {
    "qty": 1,
    "total": 4.5,
    "unit_price": 4.5,
    "description": "Coffee"
   }
  ],
  "composed_of": [
   "receipt-parser",
   "extract-entities",
   "exchange-rates"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/receipt-to-ledger-f149c12e/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)
