cron402
cron402: create a cron job that calls your webhook on a schedule. $0.008 includes 1 run credit; each subsequent run costs 1 credit (top up at /v1/crons/topup/{pack}).
Answeringour last check, 2026-09-24
1 of 1checks answered this week
452 msmedian answer time
$0.008listed price per call
$0.008price 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://cron402-api.user-defaults.workers.dev/v1/crons
| Category | Everything else |
|---|---|
| Provider host | cron402-api.user-defaults.workers.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.008 | 452 ms |
Example input (from the provider)
{
"body": {
"maxRuns": 10,
"schedule": "0 * * * *",
"target": {
"method": "POST",
"url": "https://example.com/hook"
}
},
"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": {
"maxRuns": {
"maximum": 10000,
"minimum": 1,
"type": "integer"
},
"notifyUrl": {
"description": "Optional webhook that receives a POST after every execution with the run result",
"format": "uri",
"maxLength": 2048,
"type": "string"
},
"schedule": {
"maxLength": 64,
"minLength": 9,
"type": "string"
},
"target": {
"additionalProperties": false,
"properties": {
"body": {
"maxLength": 16384,
"type": "string"
},
"headers": {
"additionalProperties": {
"maxLength": 256,
"type": "string"
},
"type": "object"
},
"method": {
"default": "POST",
"enum": [
"GET",
"POST"
],
"type": "string"
},
"url": {
"format": "uri",
"maxLength": 2048,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}
},
"required": [
"schedule",
"target"
],
"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"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"credits": {
"type": "integer"
},
"id": {
"format": "uuid",
"type": "string"
},
"statusUrl": {
"type": "string"
}
},
"required": [
"id",
"statusUrl",
"credits"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}