# AgentBodega Stack Status Check

> AgentBodega 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 operational status of one or more named services/infrastructure components and returns a bundled readiness summary.

## Facts

- Endpoint: POST https://agentbodega.store/api/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-stack-status-check-c619b40c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JIjxmkMG0IZcLa1nbq-4n

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

Example prompt: Before I deploy, can you run a launch readiness check on GitHub and my cloud provider services to see if everything is operational?

## When to prefer this

Choose this endpoint when you need a quick, aggregated operational status check across multiple named services (e.g. GitHub, cloud providers) before a deploy or workflow launch. It is purpose-built for agent launch-readiness checks with x402 micropayment access, making it ideal for automated pre-flight checks in agent pipelines where paying per-call is acceptable and a structured JSON summary is needed.

## Known failure modes

- Unknown or unrecognized service IDs in the 'services' array may return partial or error results
- Service itself may be unreachable, returning a degraded or error status
- Missing required 'services' field returns a validation error
- Payment not provided or insufficient USDC results in x402 payment-required rejection
- Downstream status APIs may be slow or unavailable, causing timeouts

## How this service works

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

## Output

Returns a bundle with an ID (e.g. 'vibe-deploy-readiness'), an array of per-service results each containing a status field (e.g. 'operational') and the service ID, and a top-level summary status indicating overall readiness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "services",
       "type": "array",
       "required": true
      },
      {
       "name": "includeComponents",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "services"
     ],
     "fieldCount": 2,
     "contentType": "application/json",
     "optionalPreview": [
      "includeComponents"
     ],
     "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": "vibe-deploy-readiness"
  },
  "results": [
   {
    "status": "operational",
    "service": {
     "id": "github"
    }
   }
  ],
  "summary": {
   "status": "operational"
  }
 }
}
```

## More

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