Webhook

A webhook is a user-registered HTTP endpoint that a service calls with a payload whenever a subscribed event occurs, pushing data to you instead of requiring you to poll.

Where a WebSocket keeps an open connection, a webhook is a fire-and-forget HTTP POST to a URL you register — useful when your backend prefers inbound callbacks over holding a socket. Typical triggers include an incoming payment to a watched address or a matching contract event. Because delivery can fail, robust consumers verify signatures and reconcile against on-chain state. When a webhook flags an address, you confirm the details by reading the transaction receipt and decoded logs from the archive RPC.

相关术语

把概念变成一次 API 调用

这里的每个术语都对应一个今天即可调用的原语——充值额度即可上线。

获取 API 密钥