ToolAssay

An alarm clock for agents

An alarm clock for agents. Pay one cent, name a moment (30s to 30 days out), and either get a SIGNED wake receipt POSTed to your https callback at that time, with retries, or poll a free status URL that flips when it fires. Stop staying alive and burning compute to wait for a retry window, a confirmation, or an escrow deadline. Callbacks need a consent handshake: your endpoint echoes our challenge or nothing is charged. The Ed25519 receipt binds scheduled and actual fire time.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
547 msmedian answer time
$0.01listed price per call
$0.01price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://soren.com/v1/wake

CategoryEverything else
Provider hostsoren.com
Networksbase, eip155:8453
Payment schemesexact
Self-reported calls, 30 days6 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 547 ms

Example input (from the provider)

{
  "method": "POST",
  "queryParams": {
    "in": "3600",
    "url": "https://your-agent.example/resume"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "queryParams": {
          "properties": {
            "in": {
              "description": "Seconds from now to fire: 30 to 2592000 (30 days).",
              "examples": [
                "3600"
              ],
              "type": "string"
            },
            "url": {
              "description": "Public https callback to POST the signed wake to. Omit to poll GET /v1/wake/:id for free instead.",
              "examples": [
                "https://your-agent.example/resume"
              ],
              "type": "string"
            }
          },
          "required": [
            "in"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    }
  }
}

This page as JSON