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

## Facts

- Endpoint: POST https://x402.agentutility.ai/weather-localize-pack
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-localize-pack-ae66a8e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pBQGGZNnEk6zwTBGTGWrj

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 weather-localize-pack-ae66a8e4 -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": {
      "city": {
       "type": "string",
       "description": "City or place name, e.g. Paris or San Francisco. Max 120 chars."
      },
      "target_language": {
       "type": "string",
       "description": "Language name or ISO code for the summary translation."
      },
      "country_code": {
       "type": "string",
       "description": "Optional ISO-2 country code to disambiguate city names."
      },
      "units": {
       "type": "string",
       "enum": [
        "metric",
        "imperial"
       ],
       "description": "Weather units. Default metric."
      },
      "forecast_days": {
       "type": "number",
       "description": "Daily forecast days to include, 1-7. Default 1."
      },
      "hourly": {
       "type": "boolean",
       "description": "Include hourly forecast arrays when true."
      }
     },
     "required": [
      "city",
      "target_language"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "city": {
       "type": "string"
      },
      "target_language": {
       "type": "string"
      },
      "english_summary": {
       "type": "string"
      },
      "localized_summary": {
       "type": "string"
      },
      "composed_of": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "components": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "ok": {
          "type": "boolean"
         },
         "ms": {
          "type": "integer"
         }
        }
       }
      },
      "degraded": {
       "type": "boolean"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "city": "Paris",
  "degraded": false,
  "components": [
   {
    "ms": 900,
    "ok": true,
    "name": "weather-current-city"
   },
   {
    "ms": 1300,
    "ok": true,
    "name": "translate"
   }
  ],
  "composed_of": [
   "weather-current-city",
   "translate"
  ],
  "english_summary": "Weather for Paris, France. Temperature is 21.",
  "target_language": "Spanish",
  "localized_summary": "Clima para Paris, Francia. La temperatura es 21."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-localize-pack-ae66a8e4/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)
