# AgentStatus Monitor List

> AgentStatus Monitor List is a paid API for AI agents from api.agentstatus.tech, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Retrieves a list of all uptime/status monitors configured for the authenticated account, with optional filtering by monitor status.

## Facts

- Endpoint: GET https://api.agentstatus.tech/v1/monitors
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-agentstatus-tech-01d8c2a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xtxaQjM8FllpaYL_c-05Z

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 api-agentstatus-tech-01d8c2a7
```

Example prompt: Show me all the uptime monitors on my AgentStatus account — especially the ones that are currently down.

## When to prefer this

Use this endpoint when you need to programmatically enumerate all monitors in an AgentStatus account, audit monitoring coverage, detect which services are currently down or paused, or feed monitor IDs into subsequent calls for details or updates.

## Known failure modes

- Invalid or missing authentication credentials returns 401 Unauthorized
- Invalid status filter value returns 400 Bad Request
- Account has no monitors configured returns empty list
- Service unavailable returns 503
- Rate limit exceeded returns 429

## How this service works

List all monitors for the account

## Output

Returns a list of monitor objects for the account, each containing monitor details such as name, type, status, and configuration. Results can be pre-filtered to only return monitors with a specific status: active, paused, or down.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "status": {
       "enum": [
        "active",
        "paused",
        "down"
       ],
       "type": "string",
       "description": "Filter by monitor status"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-agentstatus-tech-01d8c2a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstatus.tech](https://www.zero.xyz/host/api.agentstatus.tech/llms.txt)
