# jurat.dev Wake Scheduler

> jurat.dev Wake Scheduler is a paid API for AI agents from jurat.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Schedule a future HTTP webhook delivery: store a payload and have it POSTed to your endpoint at a specified future time

## Facts

- Endpoint: GET https://jurat.dev/v1/wake/create
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jurat-dev-wake-scheduler-10cd1c0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7jt-SM5JO7flsBFitv2WW

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 jurat-dev-wake-scheduler-10cd1c0c
```

Example prompt: Schedule a webhook wakeup for tomorrow at 9am UTC — POST the payload '{"task":"daily-summary"}' to https://myapp.example.com/hooks/wakeup when the time comes.

## When to prefer this

Use this endpoint when an AI agent or serverless function cannot stay alive long enough to wait for a future event, and needs to schedule a one-shot HTTP callback at a specific future datetime. Ideal for agent workflows that need deferred execution, time-based triggers, or delayed payload delivery without running a persistent cron server.

## Known failure modes

- Invalid or past datetime in 'at' parameter — job rejected or fires immediately
- Webhook URL unreachable at delivery time — delivery may fail silently
- Malformed webhook URL — validation error on creation
- Payment failure via x402 — request blocked before job is created
- Missing required 'at' or 'webhook' query parameters — 400-level error

## How this service works

Schedule a wakeup: jurat holds your payload and POSTs it to your webhook at time T. Cron for agents that cannot stay alive.

## Output

A confirmation that the wake job has been created, including the scheduled delivery time and a job identifier. At time T, jurat will POST the provided payload to the specified webhook URL.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-07-21T06:00:00Z",
  "id": "uuid",
  "kind": "wake",
  "status": "pending"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jurat-dev-wake-scheduler-10cd1c0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jurat.dev](https://www.zero.xyz/host/jurat.dev/llms.txt)
