# Spraay Gateway - List Scheduled Cron Jobs

> Spraay Gateway - List Scheduled Cron Jobs 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 scheduled cron jobs configured on the Spraay gateway.

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/cron/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-652e3d96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q0d6csukilvX0C3jush5T

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-652e3d96
```

Example prompt: Show me all the scheduled cron jobs currently configured on the Spraay gateway.

## When to prefer this

Use this endpoint when you need to inspect or audit what scheduled/recurring jobs are currently registered on the Spraay gateway, such as before adding a new job, verifying automation is configured, or monitoring scheduled task health.

## Known failure modes

- Authentication or payment failure returns 402 Payment Required
- No jobs configured returns an empty array
- Gateway unavailable returns 5xx error
- Malformed request returns 400 Bad Request

## How this service works

List scheduled jobs.

## Output

An array of scheduled job objects, each describing a configured cron job — likely including job identifiers, schedules, types, and statuses.

## 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": {
      "jobs": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-652e3d96/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)
