# AgentBodega Status Bundle Check

> AgentBodega Status Bundle 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-15).

Checks the operational status of a named bundle of services (e.g. 'vibe-deploy-readiness') and returns aggregated health results for each service in the bundle.

## Facts

- Endpoint: POST https://agentbodega.store/api/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-status-bundle-check-9170846a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6MsGVJQ6dVFfdfPeUAZRV

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-status-bundle-check-9170846a -d '<json body>'
```

Example prompt: Check whether the 'vibe-deploy-readiness' bundle is fully operational — include the status for each service like GitHub and show me the overall summary.

## When to prefer this

Use this endpoint when you need to check the health of a named, pre-configured group of services simultaneously rather than querying each one individually. It is especially useful for pre-deployment go/no-go checks, where a single summary status is needed across multiple dependencies. Prefer this over individual status checks when you have a bundle ID or a list of services to aggregate.

## Known failure modes

- Unknown bundle ID returns empty or error result
- One or more services in the bundle are unreachable, returning degraded status
- Malformed request body (e.g. invalid services array) may return a 400-level error
- Payment not fulfilled via x402 protocol results in 402 Payment Required
- Transient upstream service outages may cause partial results

## How this service works

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

## Output

Returns a JSON object containing the bundle ID, an array of per-service status results (each with service ID and operational status), and a top-level summary status (e.g. 'operational' or degraded). Useful for aggregated go/no-go launch decisions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "bundle",
       "type": "string",
       "required": false
      },
      {
       "name": "services",
       "type": "array",
       "required": false
      },
      {
       "name": "includeComponents",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [],
     "fieldCount": 3,
     "contentType": "application/json",
     "optionalPreview": [
      "bundle",
      "services",
      "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-status-bundle-check-9170846a/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)
