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

## Facts

- Endpoint: POST https://x402.agentutility.ai/satellite-bbox
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/satellite-bbox-b607207a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RRK3X6SbjsYkntneJzRLL

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 satellite-bbox-b607207a -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": [
      "bbox"
     ],
     "properties": {
      "bbox": {
       "type": "array",
       "description": "[west, south, east, north] in WGS84 lon/lat. Required. west<east, south<north, area ≤ 4 sq-deg."
      },
      "date": {
       "type": "string",
       "description": "End date of the lookback window in YYYY-MM-DD. Default = yesterday."
      },
      "days": {
       "type": "number",
       "description": "Lookback window in days. 7-180. Default 30. Mosaic uses least-cloudy pixel across the window."
      },
      "size": {
       "type": "number",
       "description": "Output image LONG-side length in pixels. 64-2500. Default 512. Short side scales by bbox aspect."
      },
      "max_cloud_coverage": {
       "type": "number",
       "description": "Per-scene max cloud cover percentage to include. 0-100. Default 30."
      }
     }
    },
    "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": {
      "bbox": {
       "type": "array",
       "items": {
        "type": "number"
       }
      },
      "size": {
       "type": "object",
       "properties": {
        "width": {
         "type": "integer"
        },
        "height": {
         "type": "integer"
        }
       }
      },
      "bytes": {
       "type": "integer"
      },
      "format": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "license": {
       "type": "string"
      },
      "time_range": {
       "type": "object",
       "properties": {
        "to": {
         "type": "string"
        },
        "from": {
         "type": "string"
        },
        "lookback_days": {
         "type": "integer"
        }
       }
      },
      "attribution": {
       "type": "string"
      },
      "data_base64": {
       "type
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bbox": [
   -122.5,
   37.7,
   -122.35,
   37.82
  ],
  "size": {
   "width": 1024,
   "height": 819
  },
  "bytes": 487231,
  "format": "png",
  "source": "cdse-sentinel-2-l2a",
  "license": "Copernicus open data (CC BY-SA 3.0 IGO)",
  "time_range": {
   "to": "2026-05-15",
   "from": "2026-04-15",
   "lookback_days": 30
  },
  "attribution": "Contains modified Copernicus Sentinel data [2026] / processed by x402-deployer via Sentinel Hub.",
  "data_base64": "iVBORw0KGgoAAAANSUhEUgAA...",
  "content_type": "image/png",
  "max_cloud_coverage": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/satellite-bbox-b607207a/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)
