Avalanche · Example Payload

Create Webhook

Create a webhook to receive address activity notifications

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Create Webhook is an example object payload from Avalanche, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionoperationrequestresponse

Example Payload

Raw ↑
{
  "description": "Create a webhook to receive address activity notifications",
  "operation": "POST /v1/webhooks",
  "request": {
    "path": "/v1/webhooks",
    "body": {
      "url": "https://your-server.com/webhook-handler",
      "chainId": "43114",
      "eventType": "address_activity",
      "includeLogs": true,
      "metadata": {
        "addresses": [
          "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6"
        ]
      }
    }
  },
  "response": {
    "id": "wh_abc123",
    "url": "https://your-server.com/webhook-handler",
    "chainId": "43114",
    "eventType": "address_activity",
    "status": "active",
    "createdAt": "2026-01-01T00:00:00Z"
  }
}