# 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/trip-conditions-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/trip-conditions-pack-a3825007
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bx43jE65E2hDfnJUg6pSV

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 trip-conditions-pack-a3825007 -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": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "days": {
       "type": "number",
       "description": "Forecast days, integer 1-7. Default 3."
      },
      "latitude": {
       "type": "number",
       "description": "Decimal degrees, range [-90, 90]. Positive north."
      },
      "longitude": {
       "type": "number",
       "description": "Decimal degrees, range [-180, 180]. Positive east."
      }
     }
    },
    "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": {
      "days": {
       "type": "integer"
      },
      "weather": {
       "type": "object",
       "properties": {
        "daily": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "date": {
            "type": "string"
           },
           "temperature_max": {
            "type": "number"
           }
          }
         }
        },
        "current": {
         "type": "object",
         "properties": {
          "temperature": {
           "type": "number"
          },
          "weather_code": {
           "type": "integer"
          }
         }
        }
       }
      },
      "degraded": {
       "type": "boolean"
      },
      "latitude": {
       "type": "number"
      },
      "timezone": {
       "type": "object",
       "properties": {
        "timezone": {
         "type": "string"
        },
        "utc_offset_seconds": {
         "type": "integer"
        }
       }
      },
      "longitude": {
       "type": "number"
      },
      "sun_times": {
       "type": "object",
       "properties": {
        "times": {
         "type": "object",
         "properties": {
          "sunset": {
           "type": "string"
          },
          "sunrise": {
       
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 3,
  "weather": {
   "daily": [
    {
     "date": "2026-07-02",
     "temperature_max": 19.4
    }
   ],
   "current": {
    "temperature": 17.2,
    "weather_code": 3
   }
  },
  "degraded": false,
  "latitude": 37.7749,
  "timezone": {
   "timezone": "America/Los_Angeles",
   "utc_offset_seconds": -25200
  },
  "longitude": -122.4194,
  "sun_times": {
   "times": {
    "sunset": "2026-07-03T03:35:14+00:00",
    "sunrise": "2026-07-02T12:52:03+00:00"
   }
  },
  "components": [
   {
    "ms": 420,
    "ok": true,
    "name": "weather-forecast"
   },
   {
    "ms": 380,
    "ok": true,
    "name": "sunrise-sunset"
   },
   {
    "ms": 450,
    "ok": true,
    "name": "air-quality"
   },
   {
    "ms": 510,
    "ok": true,
    "name": "timezone-lookup"
   }
  ],
  "air_quality": {
   "current": {
    "us_aqi": 42,
    "us_aqi_category": "good"
   }
  },
  "composed_of": [
   "weather-forecast",
   "sunrise-sunset",
   "air-quality",
   "timezone-lookup"
  ]
 }
}
```

## More

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