# AgentBodega Clerk Status Check

> AgentBodega Clerk 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 live operational status of the Clerk authentication service and returns incident information and recommendations.

## Facts

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

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-clerk-status-check-a9c95280 -d '<json body>'
```

Example prompt: Can you check whether Clerk is currently operational and let me know if there are any active incidents affecting it, including details on affected components?

## When to prefer this

Choose this endpoint when you need a quick, agent-payable ($0.005 USDC via x402) programmatic check of Clerk's operational status without scraping Clerk's status page yourself. Ideal for pre-deployment checks, incident triage, or building automated health dashboards that include Clerk as a dependency.

## Known failure modes

- Clerk's own status page is unreachable, resulting in an error or stale data
- Invalid parameter types (e.g. non-boolean for includeComponents) may cause a 400-style error
- Payment failure via x402 protocol blocks the call before any status is fetched
- Rate limiting or quota exhaustion on the upstream status API may return degraded results

## 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 'status' string (e.g. 'operational'), a 'service' object with the service name, and a 'recommendation' string summarizing whether any provider incident is visible. Optionally includes component-level statuses and incident details depending on request parameters.

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

## More

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