# AgentBodega Bitbucket Status Check

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

Checks the current operational status of Bitbucket by querying its status page, returning an overall health indicator and optional component/incident details.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/bitbucket
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-bitbucket-status-check-0098caf7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kfm1XjDadTCEvBFiE4OfK

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-bitbucket-status-check-0098caf7 -d '<json body>'
```

Example prompt: Can you check if Bitbucket is currently operational and let me know if there are any active incidents affecting its components?

## When to prefer this

Use this endpoint when an agent needs a quick, paid-per-call programmatic check of Bitbucket's health without scraping or parsing Bitbucket's status page directly. Prefer this over manual status page checks when operating inside an automated workflow that already uses x402 micropayments, and when you want a structured JSON response with a recommendation rather than raw HTML or RSS.

## Known failure modes

- Bitbucket's own status API is unreachable, causing the endpoint to return an error or degraded response
- Invalid input types (e.g. non-boolean for includeComponents) may cause a 400-level error
- The status returned may be stale if Bitbucket's status page has not yet updated to reflect a new incident
- If incidentLimit is set to 0 or a very low number, incident details may be truncated unexpectedly

## How this service works

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

## Output

Returns a JSON object with an 'ok' boolean, an overall 'status' string (e.g. 'operational'), a service name field, and a human-readable 'recommendation' string summarizing whether any provider incident is visible. Optionally includes component-level statuses and incident details depending on request flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "includeComponents",
       "type": "boolean",
       "required": false
      },
      {
       "name": "includeIncidentDetails",
       "type": "boolean",
       "required": false
      },
      {
       "name": "incidentLimit",
       "type": "integer",
       "required": false
      },
      {
       "name": "component",
       "type": "string",
       "required": false
      },
      {
       "name": "components",
       "type": "array",
       "required": false
      }
     ],
     "required": [],
     "fieldCount": 5,
     "contentType": "application/json",
     "optionalPreview": [
      "includeComponents",
      "includeIncidentDetails",
      "incidentLimit",
      "component",
      "components"
     ],
     "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": {
  "ok": true,
  "status": "operational",
  "service": {
   "name": "Bitbucket Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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