# AgentBodega Cloudflare Status Check

> AgentBodega Cloudflare 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 Cloudflare's operational status and returns current incident information to help agents determine if Cloudflare is experiencing issues.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/cloudflare
- 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-cloudflare-status-check-9df57ed6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0C1xL3KQmmyG2GugYTFEH

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-cloudflare-status-check-9df57ed6 -d '<json body>'
```

Example prompt: Can you check if Cloudflare is currently operational and tell me if there are any active incidents, including details on which components are affected?

## When to prefer this

Use this endpoint when an agent needs a quick, structured, machine-readable Cloudflare status check without scraping the Cloudflare status page directly. Prefer it over manual status page polling when you need a normalized 'ok/not-ok' signal with optional incident detail in a single paid micro-call. Ideal for pre-deployment checks, incident triage, or monitoring workflows where Cloudflare health is a dependency.

## Known failure modes

- Cloudflare's own status page is unreachable — endpoint may return an error or stale data
- Invalid parameter types (e.g. non-integer incidentLimit) may cause a 400-level error
- Micro-payment failure via x402 protocol will block the request before it is processed
- Rate limiting if called too frequently in rapid succession

## 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, a status string (e.g. 'operational'), a service name object, and a human-readable recommendation string indicating whether any provider incident is visible. Optionally includes component-level statuses and incident detail arrays based on request parameters.

## 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": "Cloudflare Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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