# Spraay Notification Status Check

> Spraay Notification Status Check 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-14).

Checks the delivery status of a previously sent notification by its ID

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/notify/status
- 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/spraay-notification-status-check-67ce4622
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8TLCk2iracp02AKicnWlS

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 spraay-notification-status-check-67ce4622
```

Example prompt: Can you check the delivery status of the notification with ID abc123 that I sent earlier through Spraay?

## When to prefer this

Use this endpoint when you need to confirm whether a notification previously dispatched through Spraay (e.g. an SMS payment alert) was successfully delivered. Prefer this over webhook-based delivery events when you need on-demand, synchronous confirmation of a specific notification's status by ID.

## Known failure modes

- Missing or invalid notification ID returns an error
- Notification ID not found returns a 404 or empty status
- Network timeout on lookup
- Expired or deleted notification records may return no data
- Payment failure (x402) blocks the status check

## How this service works

Check notification delivery status.

## Output

Returns a JSON object containing the notification ID and its current delivery status (e.g. delivered, pending, failed), allowing the caller to confirm whether the notification reached its destination.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spraay-notification-status-check-67ce4622/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)
