Webhook
Send trading signals to Tradecraft from external systems (TradingView, custom bots, analytics tools) via HTTP webhooks.
Setup
Step 1: Create Webhook Data Source
Navigate to Strategy → Add Data Source
Select Webhook
Name your webhook (e.g., "TradingView Alerts")
Copy your unique webhook URL and click create

Step 2: Send Signals
Send POST requests with JSON payload to your webhook URL.
Signal Format
Required Fields
{
"signal_type": "BUY",
"token_address": "So11111111111111111111111111111111111111112"
}Response Codes
200 OK: Signal processed successfully400 Bad Request: Invalid payload or missing required fields404 Not Found: Invalid webhook URL429 Too Many Requests: Rate limit exceeded
Security
Keep your webhook URL secret. It contains authentication credentials and anyone with the URL can send signals.
To revoke access:
Go to Data Sources → Your Webhook
Click Delete to permanently remove the webhook
Last updated
