# AgentBodega OpenAI Status Check

> AgentBodega OpenAI 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 current operational status of OpenAI's services and returns a human-readable recommendation about any active incidents.

## Facts

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

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-openai-status-check-dc644a83 -d '<json body>'
```

Example prompt: Before I kick off this batch job, can you check whether OpenAI is fully operational right now — include any active incident details so I know what's going on?

## When to prefer this

Choose this endpoint when an AI agent needs a quick, structured, agent-friendly check of OpenAI's operational health before initiating workflows, debugging API failures, or surfacing provider status to end users. It is preferable to scraping the OpenAI status page directly because it returns normalized JSON with a plain-English recommendation, costs only $0.005 USDC per call, and is designed for x402-compatible agent payment flows.

## Known failure modes

- Network or upstream status page unreachable — may return an error or stale result
- Invalid component name provided — may return no matching component data
- Upstream OpenAI status page itself is down — endpoint may fail to retrieve fresh data
- Exceeded rate limits or payment failure — x402 payment not processed correctly

## 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 plain-English 'recommendation' message summarizing whether any provider incident is visible. Optionally includes component-level status 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": "OpenAI Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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