Webhook

Send trading signals to Tradecraft from external systems (TradingView, custom bots, analytics tools) via HTTP webhooks.

Setup

Step 1: Create Webhook Data Source

  1. Navigate to StrategyAdd Data Source

  2. Select Webhook

  3. Name your webhook (e.g., "TradingView Alerts")

  4. Copy your unique webhook URL and click create

Webhook configuration panel.

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 successfully

  • 400 Bad Request: Invalid payload or missing required fields

  • 404 Not Found: Invalid webhook URL

  • 429 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:

  1. Go to Data SourcesYour Webhook

  2. Click Delete to permanently remove the webhook

Last updated