# AgentBodega Ring Status Check

> AgentBodega Ring 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 operational status of the Ring service/provider, returning incident details and component health.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/ring
- 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-ring-status-check-ff902e2e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tt0H-tWQk0qZDP7Suu-PI

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-ring-status-check-ff902e2e -d '<json body>'
```

Example prompt: Can you check whether Ring is currently operational or having any incidents, and include details on up to 5 recent incidents?

## When to prefer this

Choose this endpoint when you need a quick, paid-on-demand status check specifically for Ring's service infrastructure, particularly within an x402 micropayment agent workflow. Prefer it over manual status page scraping or generic uptime monitors when you need structured JSON output with optional incident and component granularity in a single call.

## Known failure modes

- Ring status page unavailable — may return error or degraded response
- Invalid component name filter returns empty or unfiltered results
- Payment failure ($0.005 USDC) results in 402 response and no data
- incidentLimit of 0 or negative value may return unexpected results
- Network timeout if upstream Ring status provider is slow

## 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, and a human-readable recommendation about whether any provider incident is visible. Optional fields include 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": "Ring Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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