Register a subscription (yours or one you manage for another agent) for renewal-
Register a subscription (yours or one you manage for another agent) for renewal-reminder tracking. Bookkeeping only — no auto-renewal, no custody, this server never pays on your behalf. Fires a webhook once per cycle when the reminder window opens.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.01listed 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://lab.paidapis.net/api/subscriptions/register
| Category | Everything else |
|---|---|
| Provider host | lab.paidapis.net |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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": {
"amountUsdc": 0,
"nextRenewalAt": "",
"ownerAddress": "",
"reminderLeadSeconds": 0,
"renewsEverySeconds": 0,
"serviceName": "",
"serviceUrl": "",
"webhookUrl": ""
},
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"amountUsdc": {
"description": "Renewal amount, in USDC.",
"type": "number"
},
"nextRenewalAt": {
"description": "ISO 8601 date of the next renewal (default: now + renewsEverySeconds).",
"type": "string"
},
"ownerAddress": {
"description": "Wallet address this subscription belongs to.",
"type": "string"
},
"reminderLeadSeconds": {
"description": "Seconds before nextRenewalAt to fire the reminder, up to 2592000 (default 60).",
"type": "integer"
},
"renewsEverySeconds": {
"description": "Renewal period length, in seconds.",
"type": "integer"
},
"serviceName": {
"description": "Display name of the subscribed service (max 80 chars).",
"type": "string"
},
"serviceUrl": {
"description": "URL of the subscribed service.",
"type": "string"
},
"webhookUrl": {
"description": "Public http(s) URL to POST a reminder to before renewal is due.",
"type": "string"
}
},
"required": [
"ownerAddress",
"serviceName",
"serviceUrl",
"amountUsdc",
"renewsEverySeconds"
],
"type": "object"
}
}
},
"output": {
"properties": {
"example": {
"properties": {
"amountUsdc": {
"type": "number"
},
"nextRenewalAt": {
"type": "string"
},
"ownerAddress": {
"type": "string"
},
"reminderLeadSeconds": {
"type": "integer"
},
"renewsEverySeconds": {
"type": "integer"
},
"serviceName": {
"type": "string"
},
"serviceUrl": {
"type": "string"
},
"status": {
"enum": [
"active",
"cancelled"
],
"type": "string"
},
"subscriptionId": {
"type": "string"
},
"webhookUrl": {
"type": [
"string",
"null"
]
}
},
"type": "object"
}
}
}
}
}