🪝Webhooks settings

Creating a Webhook

1

Template Selection

Pick a trading template you’ve saved earlier. It defines how the webhook will:

  • Buy (amount, slippage, wallets)

  • Apply safety rules (MEV, degen, MC filters)

  • Auto-sell (TP/SL steps)

2

Name Your Webhook

Give it a descriptive name (e.g. Buy 0.4 SOL or DRBT Calls). Type the name and hit Enter.

3

Copy Credentials

Once created, you’ll receive:

  • Webhook URL (connects to DRBT)

  • Access Token (confirms ownership)

You’ll also see a quick 5-step setup guide for DRBT tools:

  1. Open DRBT Filters Bot

  2. Go to your target filter → Click Webhook → Paste your Webhook URL

  3. Under Autobuy Option, choose Blazing

  4. Return to Blazing → Copy your Access Token

  5. Paste the token in DRBT and confirm it works

✅ Done! DRBT alerts that match your filters will now trigger trades on Blazing using your selected template.


Interact with Webhook

To trigger the webhook, send a POST request to the Webhook URL with the Access Token included as a bearer token in the headers. The endpoint requires one parameter in the request body: the contract address of the token.

Here’s an example of the request structure using curl:

curl -X POST 'https://dev.blazingworld.me/api/v1/order/webhook//trigger/buy?b=1&l=en'
-H 'Content-Type: application/json'
-H 'Authorization: Bearer '
-H 'Accept: application/json'
-d '{ "contract": "0x<TOKEN_ADDRESS>" }'

Key Notes

  • The contract parameter should contain the contract address of the token you want to interact with.

  • This example is provided for illustration purposes. Replace <ID> and <ACCESS TOKEN> with the specific values generated during webhook setup.

By following these steps, you can automate your trading strategies with Blazing App's webhooks and streamline your trading experience.

Last updated