# AgentBodega Convex Status Check

> AgentBodega Convex 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-15).

Checks the live operational status of Convex (the backend platform) and returns an incident-aware health recommendation.

## Facts

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

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-convex-status-check-27f36d22 -d '<json body>'
```

Example prompt: Can you quickly check whether Convex is operational right now and let me know if there are any active incidents I should be aware of?

## When to prefer this

Use this endpoint when your agent needs a quick, structured, paid-gated health check specifically for Convex with a ready-made incident recommendation — rather than scraping Convex's status page directly or building your own status poller. It's ideal for pre-flight checks in CI/CD pipelines or agent workflows that depend on Convex being healthy before proceeding.

## Known failure modes

- Convex's own status page is unreachable, causing a failed upstream fetch
- Invalid field types in the request body (e.g. non-integer incidentLimit) causing a 400 error
- Payment not included or insufficient USDC, causing a 402 Payment Required response
- Unknown component name returning empty or null component status
- Network timeout if Convex status API is slow to respond

## 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 human-readable `status` string (e.g. 'operational'), a `service` object with the service name, and a natural-language `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": "Convex Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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