# context.agentutil.net Platform Status Check

> context.agentutil.net Platform Status Check is a paid API for AI agents from context.agentutil.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Checks whether a named platform (e.g. GitHub, AWS, Stripe) is currently up or experiencing incidents

## Facts

- Endpoint: POST https://context.agentutil.net/v1/platform
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/context-agentutil-net-b4cbb6e5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bHI0f5dlM8YVyDh7_8dd6

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 context-agentutil-net-b4cbb6e5 -d '<json body>'
```

Example prompt: Before I kick off this deployment pipeline, can you check if GitHub is up right now and not having any incidents?

## When to prefer this

Use this endpoint when an AI agent needs a pre-flight check before triggering deployments, API-dependent workflows, or any automation that relies on a third-party platform being operational. Prefer over manually checking status pages or scraping provider websites.

## Known failure modes

- Platform not monitored: status='unknown', summary explains platform is not yet tracked, last_checked is null
- Missing or invalid platform field: may return an error or unknown status
- Network/upstream failure: request_id returned but status data unavailable
- Unsupported platform name: returns unknown status without error

## How this service works

Is GitHub, AWS, or Stripe up right now? Check platform status before triggering deployments or API-dependent workflows

## Output

Returns a status string, a human-readable summary, the platform name echoed back, and a last_checked timestamp (may be null if not monitored). Also includes related agentutil services for further context.

## Example request

```json
{
 "platform": "github"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "platform": {
   "type": "string",
   "description": "Platform name to check"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "service",
  "request_id",
  "related_services"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "status",
    "details",
    "summary",
    "platform",
    "last_checked"
   ],
   "properties": {
    "status": {
     "type": "string"
    },
    "details": {
     "type": "null"
    },
    "summary": {
     "type": "string"
    },
    "platform": {
     "type": "string"
    },
    "last_checked": {
     "type": "null"
    }
   }
  },
  "service": {
   "type": "string"
  },
  "request_id": {
   "type": "string"
  },
  "related_services": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "url",
     "name",
     "description"
    ],
    "properties": {
     "url": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/context-agentutil-net-b4cbb6e5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from context.agentutil.net](https://www.zero.xyz/host/context.agentutil.net/llms.txt)
