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

## Facts

- Endpoint: POST https://x402.agentutility.ai/brand-presence-report
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brand-presence-report-d4bb8e94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2yYXHpepgc9sa6N_nQHET

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 brand-presence-report-d4bb8e94 -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": {
      "name": {
       "type": "string",
       "description": "Candidate brand name, 1-60 chars, e.g. 'Launchforge'."
      },
      "tlds": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "TLDs to check without dots, max 6. Default ['com','ai','io','dev']."
      }
     },
     "required": [
      "name"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "slug": {
       "type": "string"
      },
      "domains": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "tld": {
          "type": "string"
         },
         "domain": {
          "type": "string"
         },
         "is_registered": {
          "type": "boolean"
         },
         "registrar": {
          "type": "string"
         }
        }
       }
      },
      "social_handle": {
       "type": "object",
       "properties": {
        "username": {
         "type": "string"
        },
        "available": {
         "type": "boolean"
        },
        "status": {
         "type": "string"
        }
       }
      },
      "clearance": {
       "type": "object",
       "properties": {
        "risk_level": {
         "type": "string"
        },
        "risk_score": {
         "type": "integer"
        }
       }
      },
      "lookalike_risk": {
       "type": "object",
       "properties": {
        "risk_score": {
         "type": "integer"
        },
        "risk_level": {
         "type": "string"
        },
        "ascii_only": {
         "type": "boolean"
        }
       }
      },
      "note": {
       "type": "string"
      },
      "composed_of": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "name": "Launchforge",
  "note": "Screening data only — not legal, trademark, or brand advice.",
  "slug": "launchforge",
  "domains": [
   {
    "tld": "com",
    "domain": "launchforge.com",
    "registrar": "GoDaddy",
    "is_registered": true
   },
   {
    "tld": "ai",
    "domain": "launchforge.ai",
    "is_registered": false
   }
  ],
  "degraded": false,
  "clearance": {
   "risk_level": "soft",
   "risk_score": 35
  },
  "components": [
   {
    "ms": 402,
    "ok": true,
    "name": "domain-availability:com"
   },
   {
    "ms": 4210,
    "ok": true,
    "name": "brand-clearance"
   }
  ],
  "composed_of": [
   "domain-availability:com",
   "domain-availability:ai",
   "social-handle-check",
   "brand-clearance",
   "homoglyph-check"
  ],
  "social_handle": {
   "status": "not_found",
   "username": "launchforge",
   "available": true
  },
  "lookalike_risk": {
   "ascii_only": true,
   "risk_level": "low",
   "risk_score": 0
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brand-presence-report-d4bb8e94/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)
