# AgentBodega Cursor Status Check

> AgentBodega Cursor 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-13).

Checks the current operational status of the Cursor AI code editor service and returns incident details and component health.

## Facts

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

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-cursor-status-check-bacbcf5e -d '<json body>'
```

Example prompt: Can you check whether Cursor is currently operational and let me know if there are any active incidents or component issues?

## When to prefer this

Choose this endpoint when an agent or workflow depends on Cursor being available and needs a quick programmatic status check before proceeding. It is better than scraping Cursor's status page directly because it returns structured JSON with a recommendation field. Prefer it over general cloud provider status checks when the concern is specifically about Cursor AI editor availability.

## Known failure modes

- Cursor status page is itself unreachable, returning an error or timeout
- Invalid field types in request body (e.g. non-integer incidentLimit) cause a 400 error
- Payment not provided or insufficient USDC causes an x402 payment required response
- Unknown component name in filter returns empty or partial results
- Rate limiting if called too frequently in a short window

## 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 overall status field (e.g. 'operational'), a service name label ('Cursor Status Check'), a boolean ok flag, and a human-readable recommendation string summarizing any visible provider incidents. Optionally includes component-level breakdown and incident detail arrays 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": "Cursor Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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