# Anthropic Claude Status Check

> Anthropic Claude 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 live operational status of Anthropic's Claude API and returns a recommendation based on any active incidents.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/anthropic
- 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/anthropic-claude-status-check-bdef1434
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vjGwrZY8yXUbJqF60ImYm

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 anthropic-claude-status-check-bdef1434 -d '<json body>'
```

Example prompt: Before I kick off this batch of Claude API calls, can you check whether Anthropic's services are currently operational and flag any active incidents?

## When to prefer this

Choose this endpoint when an agent needs a quick, pay-per-call programmatic check of Anthropic Claude's operational health before executing Claude-dependent workflows, or when building conditional routing logic that falls back to alternative providers during outages. Prefer this over polling Anthropic's status page directly when you want a normalized, agent-friendly JSON response with a plain-language recommendation.

## Known failure modes

- Anthropic status page unreachable — may return an error or stale status
- Payment not received via x402 — request rejected before execution
- Invalid field types in request body — validation error returned
- Rate limiting or upstream timeout from Anthropic's status infrastructure

## 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' object with the service name, and a human-readable 'recommendation' string advising whether to proceed. Optionally includes component-level statuses and incident details if requested.

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

## More

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