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

## Facts

- Endpoint: POST https://x402.agentutility.ai/contact-golden-record
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contact-golden-record-6e8f1a6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VRwl6Gln6Y-XbtUGgXdRW

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 contact-golden-record-6e8f1a6d -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": {
      "records": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "2-5 candidate contact records to reconcile, each { name?: string, email?: string, company?: string, phone?: string }. Omit this and pass name/email/company/phone directly for a single-record enrichment instead."
      },
      "name": {
       "type": "string",
       "description": "Single-record shorthand: contact name (used only when 'records' is omitted)."
      },
      "email": {
       "type": "string",
       "description": "Single-record shorthand: contact email (used only when 'records' is omitted)."
      },
      "company": {
       "type": "string",
       "description": "Single-record shorthand: contact company (used only when 'records' is omitted)."
      },
      "phone": {
       "type": "string",
       "description": "Single-record shorthand: contact phone (used only when 'records' is omitted)."
      }
     },
     "required": []
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "golden_record": {
       "type": "object",
       "properties": {
        "name": {
         "type": "object",
         "properties": {
          "value": {
           "type": "string"
          },
          "source": {
           "type": "integer"
          },
          "confidence": {
           "type": "number"
          }
         }
        },
        "email": {
         "type": "object",
         "properties": {
          "value": {
           "type": "string"
          },
          "source": {
           "type": "integer"
          },
          "confidence": {
           "type": "number"
          }
         }
        },
        "company": {
         "type": "object",
         "properties": {
          "value": {
           "type": "string"
          },
          
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "degraded": false,
  "conflicts": [
   {
    "field": "company",
    "values": [
     {
      "value": "Acme Inc",
      "source_index": 0
     },
     {
      "value": "Acme Corp",
      "source_index": 1
     }
    ]
   }
  ],
  "components": [
   {
    "ms": 420,
    "ok": true,
    "name": "people-enrich:0"
   },
   {
    "ms": 30,
    "ok": true,
    "name": "pair:0-1:email"
   }
  ],
  "composed_of": [
   "people-enrich",
   "company-enrich",
   "match-key-email",
   "match-key-name",
   "match-key-company",
   "match-score"
  ],
  "merged_from": [
   0,
   1
  ],
  "golden_record": {
   "name": {
    "value": "Robert Smith",
    "source": 1,
    "confidence": 0.8
   },
   "email": {
    "value": "bob@acme.com",
    "source": 0,
    "confidence": 0.9
   },
   "phone": null,
   "domain": "acme.com",
   "company": {
    "value": "Acme Inc",
    "source": 0,
    "confidence": 0.8
   }
  },
  "match_confidence": 87
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contact-golden-record-6e8f1a6d/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)
