PayWeave · Manifest · scheduler

PayWeave Scheduler

Durable scheduled and recurring HTTP callbacks for agents. Trigger future actions without keeping a process alive.

Read skill.md
Endpoints4 items
  1. 01
    POST
    /schedules
    Schedule an HTTPS callback to fire once (`at` / `delaySeconds`) or on a bounded recurring cadence (`everySeconds` + `maxRuns`). Deliveries are signed (HMAC over timestamp + body using the returned `signingSecret`) and retried with backoff. Priced per fire ($0.002): one-shot = $0.002, recurring = $0.002 x maxRuns (prepaid; cancelling early forfeits unused fires).
    $0.002 – $2.00
  2. 02
    GET
    /schedules
    List the schedules owned by the calling wallet, each with id, label, status, and next run time. Returns up to 100.
    $0.001
  3. 03
    GET
    /schedules/:id
    Get a schedule status, next/last run, run count, runs remaining, label/metadata, and recent delivery history. Owner-scoped.
    $0.001
  4. 04
    DELETE
    /schedules/:id
    Cancel a schedule and stop future fires. Owner-scoped. Prepaid recurring fires that have not run are forfeited (refunds are full-only).
    $0.001