# 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/cross-border-ops-brief
- 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/cross-border-ops-brief-21e774bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-kSI4f1dc1UgD_KAe3hrL

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 cross-border-ops-brief-21e774bf -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": {
     "required": [
      "country"
     ],
     "properties": {
      "country": {
       "type": "string",
       "description": "Destination country name or ISO 3166 code (alpha-2/alpha-3), e.g. 'Japan' or 'JP'. Required."
      },
      "nationality": {
       "type": "string",
       "description": "Optional 2-letter ISO 3166-1 passport country code, e.g. 'US', used to resolve visa requirements into the destination."
      },
      "home_currency": {
       "type": "string",
       "description": "Optional 3-letter ISO 4217 currency code to convert from, e.g. 'USD' (default USD)."
      }
     }
    },
    "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": {
      "fx": {
       "type": "object",
       "properties": {
        "base": {
         "type": "string"
        },
        "date": {
         "type": "string"
        },
        "rates": {
         "type": "object",
         "properties": {
          "JPY": {
           "type": "number"
          }
         }
        }
       }
      },
      "note": {
       "type": "string"
      },
      "visa": {
       "type": "object",
       "properties": {
        "status": {
         "type": "string"
        },
        "passport": {
         "type": "string"
        },
        "visa_free": {
         "type": "boolean"
        },
        "destination": {
         "type": "string"
        },
        "visa_free_days": {
         "type": "integer"
        }
       }
      },
      "country": {
       "type": "string"
      },
      "profile": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "region": {
         "type": "string"
        },
        "capital": {
         "type": "string"
        },
        "currencies": {
         "type": "array",
    
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fx": {
   "base": "USD",
   "date": "2026-07-06",
   "rates": {
    "JPY": 157.2
   }
  },
  "note": "Reference data only: exchange rates, country profile, visa rules, holidays, and local time are informational. Not money transmission, currency exchange execution, or immigration/legal advice.",
  "visa": {
   "status": "visa-free for 90 days",
   "passport": "US",
   "visa_free": true,
   "destination": "JP",
   "visa_free_days": 90
  },
  "country": "Japan",
  "profile": {
   "name": "Japan",
   "region": "Asia",
   "capital": "Tokyo",
   "currencies": [
    "JPY"
   ],
   "code_alpha2": "JP"
  },
  "degraded": false,
  "holidays": [
   {
    "date": "2026-11-23",
    "name": "Labor Thanksgiving Day",
    "local_name": "Labor Thanksgiving Day"
   }
  ],
  "components": [
   {
    "ms": 300,
    "ok": true,
    "name": "country-info"
   },
   {
    "ms": 250,
    "ok": true,
    "name": "exchange-rates"
   }
  ],
  "local_time": {
   "is_dst": false,
   "timezone": "UTC+09:00",
   "current_local_time": "2026-07-06T22:00:00"
  },
  "composed_of": [
   "country-info",
   "exchange-rates",
   "visa-requirements",
   "holiday-lookup",
   "timezone-lookup"
  ],
  "country_code": "JP"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cross-border-ops-brief-21e774bf/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)
