Overview
Webhooks deliver real-time event notifications to your server via HTTP POST requests.
How It Works
Register a webhook URL and subscribe to events
When events occur, TokenBot sends a signed HTTP POST to your URL
Your server responds with
2xxto acknowledge receiptFailed deliveries are retried with exponential backoff
Quick Start
# Create a webhook
curl -X POST https://api.tokenbot.com/v1/webhooks \
-H "X-API-Key: tb_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-server.com/webhooks",
"events": ["trade.filled", "copier.started", "copier.stopped"]
}'Documentation
Management — Create, update, delete, test webhooks
Events — All 46 event types with payloads
Security — Signature verification
Delivery — Retry logic and dead letter queue
Last updated
Was this helpful?

