# AgentBodega Cloud Status Bundle

> AgentBodega Cloud Status Bundle is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks the operational status of a named bundle of cloud provider services, returning per-unit status and a summary of degradation.

## Facts

- Endpoint: POST https://agentbodega.store/api/cloud/status/bundle
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-cloud-status-bundle-11c42e31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bIiQCxXIbqXhvxnfdCBjo

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 agentbodega-cloud-status-bundle-11c42e31 -d '<json body>'
```

Example prompt: Check the status of the cloud-core bundle and let me know if anything is degraded — include unhealthy services only and show the worst current status.

## When to prefer this

Use this endpoint when you need a fast, aggregated status check across a named bundle of cloud services via a single x402-payable call, rather than manually polling each cloud provider's status page. Prefer it for pre-deployment checks, scheduled monitoring, or incident triage where a summary worst-status rollup is more useful than raw per-provider feeds.

## Known failure modes

- Invalid or unknown bundle ID returns empty or error results
- Upstream cloud provider status pages unavailable may cause stale or missing data
- Malformed targets array may result in partial results or validation errors
- Payment not included or insufficient USDC causes 402 rejection before processing

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

Returns a JSON object with the bundle ID and unit count, an array of per-unit status results (filtered by the includeHealthy flag), and a summary containing the count of degraded units and the worst current status string (e.g. 'operational', 'degraded', 'outage').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "bundle",
       "type": "string",
       "required": false
      },
      {
       "name": "targets",
       "type": "array",
       "required": false
      },
      {
       "name": "includeHistory",
       "type": "boolean",
       "required": false
      },
      {
       "name": "includeHealthy",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [],
     "fieldCount": 4,
     "contentType": "application/json",
     "optionalPreview": [
      "bundle",
      "targets",
      "includeHistory",
      "includeHealthy"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bundle": {
   "id": "cloud-core",
   "units": 4
  },
  "results": [],
  "summary": {
   "degraded": 0,
   "worstStatus": "operational"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-cloud-status-bundle-11c42e31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
