# AgentUtility Receipt Parser

> AgentUtility Receipt Parser 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).

Parses receipt images or text and extracts structured data including total amount and vendor name

## Facts

- Endpoint: POST https://x402.agentutility.ai/receipt-parser
- 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/agentutility-receipt-parser-54c04d68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tuia04Bag_TDx2n2PRytv

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 agentutility-receipt-parser-54c04d68 -d '<json body>'
```

Example prompt: Can you parse this receipt from Starbucks and tell me the vendor name and total amount I spent?

## When to prefer this

Use this endpoint when you need to quickly extract structured financial data (vendor name, total) from a receipt document or image in a pay-per-call, no-subscription model. Ideal for expense automation agents, reimbursement workflows, or any scenario where receipts need to be digitized programmatically with USDC micropayment settlement via x402.

## Known failure modes

- Unreadable or blurry receipt image returns parsing error
- Receipt with unsupported format or language may yield incomplete extraction
- Missing or malformed input returns validation error
- Network or payment failure (x402 USDC settlement issue) returns 402 or 5xx
- Unusual receipt layouts from non-standard vendors may produce inaccurate totals

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

A JSON object containing structured receipt fields including vendor_name (e.g. 'Starbucks') and total (e.g. 5.75 as a numeric value), representing the key extracted data points from the submitted receipt.

## 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": [
      "image_url"
     ],
     "properties": {
      "image_url": {
       "type": "string",
       "description": "Public http(s) URL of the receipt image. Fetched server-side, capped at 7MB."
      },
      "currency_hint": {
       "type": "string",
       "description": "Optional currency context (e.g. 'EUR') to help the vision model when the receipt symbol is ambiguous."
      }
     }
    },
    "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": {
      "receipt": {
       "type": "object",
       "properties": {
        "total": {
         "type": "number"
        },
        "vendor_name": {
         "type": "string"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "receipt": {
   "total": 5.75,
   "vendor_name": "Starbucks"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-receipt-parser-54c04d68/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)
