# Halowerk Intel – List Active Watches

> Halowerk Intel – List Active Watches is a paid API for AI agents from intel.halowerk.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns all active watches (monitoring subscriptions) associated with the verified payer address on the Halowerk Intel platform.

## Facts

- Endpoint: GET https://intel.halowerk.com/v1/intel/watches
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-intel-list-active-watches-1f1c624c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IxS-WvcwYnyUYsoH3qVDp

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 halowerk-intel-list-active-watches-1f1c624c
```

Example prompt: Show me all my active watches on Halowerk Intel — I want to see every monitoring subscription currently running under my account.

## When to prefer this

Use this endpoint when you need to enumerate all currently active monitoring subscriptions (watches) for a specific verified payer address on the Halowerk Intel platform, particularly before creating new watches, building a dashboard, or auditing existing monitoring coverage. Prefer this over sibling endpoints that handle alerts, labels, or single-entry deletion.

## Known failure modes

- Payment not provided or insufficient — returns 402 Payment Required
- Payer address not verified — returns 401 Unauthorized
- No active watches exist for this payer — returns empty list
- Rate limit exceeded — returns 429 Too Many Requests
- Service unavailable — returns 503

## How this service works

Liefert nur aktive Watches der verifizierten Zahleradresse. Die verifizierte Zahleradresse ist der Eigentümer; Ergebnisse und gespeicherte Daten sind strikt auf diesen Zahler begrenzt.

## Output

A JSON list of active watch objects belonging to the verified payer address, each containing watch identifiers, monitored targets, and status metadata. Only watches owned by the paying address are returned; data is strictly scoped to that payer.

## 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-intel-list-active-watches-1f1c624c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.halowerk.com](https://www.zero.xyz/host/intel.halowerk.com/llms.txt)
