Skip to main content
GET
/
webhooks
curl "https://secureapi.gridlog.io/api/v1/webhooks?chain=polygon&status=failed&page=1" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "webhooks": [
    {
      "id": "wh_123e4567...",
      "chain": "polygon",
      "address": "0x1A2B3C...",
      "symbol": "USDC",
      "amount": "100.0",
      "txId": "0xabcdef...",
      "status": "delivered",
      "attemptsCount": 1,
      "deliveredAt": "2025-03-21T10:05:00.000Z",
      "createdAt": "2025-03-21T10:00:00.000Z"
    }
  ],
  "total": 500,
  "page": 1,
  "limit": 20,
  "totalPages": 25
}
Webhooks are delivery records — one entry per transaction event that Myaza detected and attempted to deliver to your endpoint.
chain
string
Filter by blockchain (e.g., polygon)
address
string
Filter by monitored address
status
string
Filter by delivery status: pending, delivered, failed
page
number
default:1
Page number
limit
number
default:20
Results per page (max 100)
curl "https://secureapi.gridlog.io/api/v1/webhooks?chain=polygon&status=failed&page=1" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "webhooks": [
    {
      "id": "wh_123e4567...",
      "chain": "polygon",
      "address": "0x1A2B3C...",
      "symbol": "USDC",
      "amount": "100.0",
      "txId": "0xabcdef...",
      "status": "delivered",
      "attemptsCount": 1,
      "deliveredAt": "2025-03-21T10:05:00.000Z",
      "createdAt": "2025-03-21T10:00:00.000Z"
    }
  ],
  "total": 500,
  "page": 1,
  "limit": 20,
  "totalPages": 25
}