Schedule one HTTPS callback after an integer delay of 60 through 86400 seconds
Schedule one HTTPS callback after an integer delay of 60 through 86400 seconds. The delay is anchored once to the first durable payment verification time, so identical retries cannot move the scheduled time. One payment purchases one at-least-once wake.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.002listed price per call
n/aprice 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://wake402.agentwake.workers.dev/v1/wake-after
| Category | Everything else |
|---|---|
| Provider host | wake402.agentwake.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 8 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"callback": "https://agent.example.com/wake",
"delay_seconds": 300
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"callback": {
"description": "Public HTTPS callback URL on standard port 443; WAKE402 applies its full SSRF validation before payment verification.",
"maxLength": 2048,
"pattern": "^https://",
"type": "string"
},
"delay_seconds": {
"description": "Delay after the first durable payment verification, from 60 through 86400 seconds. Identical retries preserve the original derived time.",
"maximum": 86400,
"minimum": 60,
"type": "integer"
}
},
"required": [
"callback",
"delay_seconds"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}