# gateway.spraay.app Webhook List

> gateway.spraay.app Webhook List is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a list of all registered webhooks for the account on the Spraay gateway.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/webhook/list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-spraay-app-09ac002d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_shA9j3pLrR9zhy1NeOvUG

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 gateway-spraay-app-09ac002d
```

Example prompt: Can you pull up a list of all the webhooks I currently have registered on my Spraay gateway account?

## When to prefer this

Use this endpoint when you need to audit, review, or enumerate all webhook subscriptions registered on the Spraay gateway before adding, removing, or updating webhooks. Prefer this over manual tracking when you need a ground-truth list of active webhook configurations.

## Known failure modes

- Unauthorized access returns 401 if credentials are missing or invalid
- Empty array returned if no webhooks are registered
- Payment required (402) if x402 payment is not included or insufficient
- Service unavailable (503) if gateway is temporarily down
- Rate limiting or quota exceeded errors

## How this service works

List registered webhooks.

## Output

An array of registered webhook objects, each containing details such as the webhook URL, ID, subscribed event types, and configuration metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-09ac002d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
