# AgentBodega Vercel Status Check

> AgentBodega Vercel 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 Vercel's infrastructure and returns an incident-aware recommendation for agents.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/vercel
- 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-vercel-status-check-4a227ff9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L0MZ-A0QLnpwK4RP6w7-V

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-vercel-status-check-4a227ff9 -d '<json body>'
```

Example prompt: Check if Vercel is currently operational — include component details and any active incident information.

## When to prefer this

Use this endpoint when an AI agent needs a quick, structured, machine-readable verdict on Vercel's operational health — especially in automated deployment pipelines, pre-flight checks, or incident triage workflows. It is preferable to scraping the Vercel status page directly because it returns normalized, agent-friendly JSON with a recommendation field and is available as an x402-payable micro-API without needing a separate Vercel API key.

## Known failure modes

- Vercel's own status API is unreachable, causing the proxy to return an error
- Malformed request body causes a 4xx validation error
- Rate limiting or payment failure (x402) prevents the call from completing
- Stale or delayed status data if Vercel's status page is lagging behind actual incidents

## 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'), the service name, and a human-readable 'recommendation' string summarizing any visible incidents. When components and incident details are requested, the response includes granular breakdowns of affected Vercel subsystems.

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

## More

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