# Coinbase Status Check

> Coinbase 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 Coinbase services and returns incident information, component health, and a plain-language recommendation.

## Facts

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

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 coinbase-status-check-0b9580e6 -d '<json body>'
```

Example prompt: Is Coinbase operational right now? Include any active incidents and check all components so I know if it's safe to proceed with my crypto workflow.

## When to prefer this

Choose this endpoint when an agent needs a quick, pre-parsed, plain-language summary of Coinbase's operational health without scraping the status page directly. It is especially useful as a pre-flight check before executing Coinbase-dependent workflows, or when you want structured incident data with a human-readable recommendation rather than raw status-page HTML.

## Known failure modes

- Coinbase status page itself is unreachable — endpoint may return an error or stale data
- Requesting too many incidents with a high incidentLimit may slow response
- Invalid component name in filter returns empty or mismatched results
- Payment failure (insufficient USDC balance) blocks the request before execution

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

A JSON object with an `ok` boolean, an overall `status` string (e.g. 'operational'), a `service` object with the name, and a plain-English `recommendation` string (e.g. 'No provider incident is visible.'). Optionally includes component-level health and incident details when 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": "Coinbase Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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