# AgentBodega Cloud Status Summary

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

Returns a rolled-up health summary of cloud providers, including worst-case status, incident list, and per-provider availability.

## Facts

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

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-summary-6901a1b3 -d '<json body>'
```

Example prompt: Check the current status summary across all cloud providers and let me know if anything is down — include recent incidents if there are any.

## When to prefer this

Use this endpoint when you need a fast, aggregated health snapshot across multiple cloud providers in a single call rather than polling each provider's status page individually. Ideal for pre-deployment checks, on-call runbooks, or automated monitoring pipelines that need a single worst-case status signal.

## Known failure modes

- Upstream provider status pages may be unreachable, causing incomplete data
- Invalid provider name returns an error or empty result
- Network timeout if cloud provider status APIs are slow to respond
- Incident history may be truncated if incidentLimit is set too low

## How this service works

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

## Output

A JSON object containing a summary with the worst observed status across checked providers and a count of how many were checked, the provider scope queried, and an array of any active or recent incidents with their details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "provider",
       "type": "string",
       "required": false
      },
      {
       "name": "includeHistory",
       "type": "boolean",
       "required": false
      },
      {
       "name": "includeHealthy",
       "type": "boolean",
       "required": false
      },
      {
       "name": "incidentLimit",
       "type": "integer",
       "required": false
      }
     ],
     "required": [],
     "fieldCount": 4,
     "contentType": "application/json",
     "optionalPreview": [
      "provider",
      "includeHistory",
      "includeHealthy",
      "incidentLimit"
     ],
     "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": {
  "summary": {
   "worstStatus": "operational",
   "checkedProviders": 5
  },
  "provider": "all",
  "incidents": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-cloud-status-summary-6901a1b3/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)
