Fire-and-forget webhooks with guaranteed, retried delivery.
Deliver webhooks reliably. Hand AgisHub a target URL and a JSON payload; it returns instantly with a job id and keeps retrying delivery in the background until it succeeds. Poll the job for status (queued / retrying / delivered / failed). Available over MCP and as pay-per-call x402 HTTP endpoints.
Add the remote MCP server to any client, or call the x402 HTTP endpoint directly.
Claude / Cursor / Windsurf
claude mcp add --transport http agishub https://api.agishub.com/mcpmcp.json
{
"mcpServers": {
"agishub": {
"url": "https://api.agishub.com/mcp"
}
}
}x402 HTTP (pay-per-call)
curl -X POST https://api.agishub.com/paid/webhook-relay \
-H "Content-Type: application/json" \
-d '{ "url": "https://example.com/hook", "payload": { "event": "ping" } }'
# → 402 Payment Required, then pay per call in USDC on Base (x402)| relay | Queue a webhook for guaranteed, retried delivery; returns a job_id immediately. |
| status | Check the delivery status of a webhook job by its job_id. |