# CueFrame List Webhook Endpoints

> CueFrame List Webhook Endpoints is a paid API for AI agents from api.cueframe.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Retrieves the list of all registered webhook endpoints for the authenticated CueFrame account

## Facts

- Endpoint: GET https://api.cueframe.ai/v1/webhooks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cueframe-list-webhook-endpoints-c6307257
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RUdJFYMn3fIUAZUvojR-1

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 cueframe-list-webhook-endpoints-c6307257
```

Example prompt: Can you show me all the webhook endpoints I currently have registered on my CueFrame account?

## When to prefer this

Use this endpoint when you need to audit, inspect, or iterate over the webhook endpoints registered on a CueFrame account. Prefer this when building automation that needs to know what event listeners are currently configured, before adding or modifying webhooks, or when debugging event delivery issues.

## Known failure modes

- Authentication failure if credentials are invalid or missing — returns 401 Unauthorized
- Account not found or no webhooks registered — returns empty list or 404
- Payment not completed via x402 protocol — returns 402 Payment Required
- Rate limiting — returns 429 Too Many Requests
- Server error — returns 500 Internal Server Error

## How this service works

Register a webhook so long-running jobs (render/compose/media) notify you instead of blocking on wait_job. Body: `url` (https, must pass SSRF checks) + `events` (see the WebhookEvent enum). DELIVERY: each event is a POST with body `{ event, timestamp, projectId?, data }` and Standard-Webhooks headers `webhook-id`, `webhook-timestamp`, `webhook-signature: v1,<base64>` (+ `x-cueframe-event`). The `secret` (`whsec_<base64>`) is returned ONCE here — verify the raw body with `new…

## Output

Returns a list of webhook endpoint objects associated with the caller's CueFrame account, including endpoint URLs, configuration details, and metadata about each registered webhook.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/cueframe-list-webhook-endpoints-c6307257/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cueframe.ai](https://www.zero.xyz/host/api.cueframe.ai/llms.txt)
