# AgentBodega Cloud Stack Status Check

> AgentBodega Cloud Stack Status Check 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).

Checks the real-time operational status of one or more cloud provider stack targets, returning health summaries and degradation info.

## Facts

- Endpoint: POST https://agentbodega.store/api/cloud/status/stack
- 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-stack-status-check-7116cc66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QyzoGOGm2qDDqdonUsbH9

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-stack-status-check-7116cc66 -d '<json body>'
```

Example prompt: Check the current operational status of my cloud stack — run a status check against AWS, GCP, and Azure and tell me if anything is degraded or down.

## When to prefer this

Use this endpoint when you need a unified, agent-callable status check across multiple cloud providers in a single call, especially in pre-launch or incident-response workflows where a quick degradation summary is needed. Prefer it over manually polling individual provider status pages or when you need a structured JSON response suitable for downstream automation.

## Known failure modes

- Missing required 'targets' array returns a validation error
- Unknown or unsupported target identifiers may return empty results or errors
- Network timeout if upstream status providers are slow
- Payment failure (x402) if USDC balance is insufficient

## How this service works

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

## Output

Returns a bundle object with an ID and unit count, a per-target results array with individual status details, and a summary containing the count of degraded services and the worst overall status string (e.g. 'operational', 'degraded', 'outage').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "targets",
       "type": "array",
       "required": true
      },
      {
       "name": "includeHistory",
       "type": "boolean",
       "required": false
      },
      {
       "name": "includeHealthy",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "targets"
     ],
     "fieldCount": 3,
     "contentType": "application/json",
     "optionalPreview": [
      "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": "custom-stack",
   "units": 5
  },
  "results": [],
  "summary": {
   "degraded": 0,
   "worstStatus": "operational"
  }
 }
}
```

## More

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