# AgentBodega Fly.io Status Check

> AgentBodega Fly.io 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 Fly.io's current operational status and returns incident details and component health for agent pre-launch or runtime validation.

## Facts

- Endpoint: POST https://agentbodega.store/api/status/fly
- 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-fly-io-status-check-9999dbd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aw31l7F8vDWxsS3MTd_iz

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-fly-io-status-check-9999dbd0 -d '<json body>'
```

Example prompt: Before I deploy my app, can you quickly check if Fly.io is fully operational right now and flag any active incidents?

## When to prefer this

Use this endpoint when your agent needs a quick, paid-per-call check of Fly.io's live operational status before deploying, launching a job, or diagnosing connectivity issues. Prefer it over polling Fly.io's status page directly when you want a structured, agent-friendly JSON response with a recommendation field rather than raw HTML or RSS. Best for pre-flight checks in automated deployment pipelines or runtime health monitors.

## Known failure modes

- Fly.io status page itself is unreachable — endpoint may return an error or stale data
- Invalid component name passed in 'component' filter — may return empty or mismatched results
- Payment not processed correctly via x402 — request rejected before execution
- Network timeout reaching Fly.io status upstream — response may be delayed or fail

## 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 plain-text 'status' string (e.g. 'operational'), a 'service' object with the service name, and a 'recommendation' string summarizing whether any provider incident is visible. May optionally include component-level health 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": "Fly.io Status Check"
  },
  "recommendation": "No provider incident is visible."
 }
}
```

## More

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