# AgentBodega Render Status Check

> AgentBodega Render 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 Render hosting platform and returns incident details and component health.

## Facts

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

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-render-status-check-c901cda4 -d '<json body>'
```

Example prompt: Can you check if Render is currently operational and whether there are any active incidents affecting their services, including component-level details?

## When to prefer this

Use this endpoint when you need a quick, agent-payable, programmatic check of Render's platform health — especially useful in CI/CD pipelines, pre-deployment checks, or agent workflows that need to decide whether to proceed with a Render-based operation. Prefer this over manually polling Render's status page when operating in an automated or agentic context.

## Known failure modes

- Render status page is unreachable — may return an error or degraded response
- Invalid component name provided returns no matching component data
- Payment failure via x402 results in a 402 response before the check is performed
- Rate limiting or upstream timeout from Render's status API

## How this service works

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

## Output

A JSON object indicating whether Render is operational, the service name, a human-readable recommendation string, and optionally incident details and component-level statuses based on the filters provided.

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

## More

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