# Test Webhooks
To simulate and verify your webhook endpoints, you can use the following test endpoints amd test them also in our API Reference (opens new window).
# Tree Verification Test
POST /v1/webhook/tree
Request:
{
"target": "https://yourdomain.com/webhooks/tree"
}
This sends a static tree verification payload to your specified target.
# Proof Delivery Test
POST /v1/webhook/proof
Request:
{
"target": "https://yourdomain.com/webhooks/proof"
}
This sends a static proof payload, simulating what you'll receive after verification.
# Security Notes
- API key is required in every request (x-api-key header).
- Use HTTPS for all webhook targets to ensure secure delivery.
To avoid abuse these endpoints are rate-limited and if this service is abused by targeting other services, it may be disabled without prior notice.