WebHooks
Last updated
Last updated
Blazing App allows you to automate your trading through its webhook API integration. This feature enables you to connect your custom buy templates with external systems, providing seamless and automated trading. Below is a step-by-step guide to setting up and using Blazing Webhooks:
To begin, you’ll need to create a template that will be used to automatically buy DRBT calls.
On the left-hand menu, navigate to ‘Add New Template’.
Select ‘Manual Buy’ as the type and enter all relevant settings.
Name your template.
Choose the wallets in your Blazing account that will be used for buying on the calls.
Set the ‘Spend Amount Value’ in Ethereum (ETH) for each call.
Adjust your safety settings as needed, then click ‘Add’ to save your template.
Next, we’ll create the webhook that will connect to DRBT bot:
Go back to the Template Settings section and select ‘Create Webhook’.
Name the webhook and select the template you just created.
Do not close this window until the webhook setup is fully completed.
Now we’ll link the webhook to the DRBT bot:
Copy the Webhook URL from the Blazing WebApp.
Open the DRBT Filters Bot and select the query where you want to connect the webhook.
Click ‘Webhook’ and paste the Webhook URL.
Optionally, edit the query settings or rename the query for easier identification.
In the DRBT bot, click ‘Auto Buy’ and select ‘Blazing’.
Go back to the Blazing WebApp and copy your Access Token.
Return to the DRBT bot and reply with the Access Token to finalize the connection.
Once everything is configured, you should see the Webhook URL listed and a green check next to the ‘Sniper Key’ in the DRBT bot.
Once a call comes through:
You’ll receive a notification from the Blazing Telegram Bot when a call is triggered and the buy is executed.
You can check the token that was bought on the WebApp.
Navigate to the Profit & Loss (PnL) panel in the WebApp to track your recent buys.
You can also instantly share your PnL card before selling for easy updates.
To manage or update your webhooks, go to the Settings tab in the Blazing WebApp. Here, you can select a different template to be used with the webhook if needed.
When you generate a webhook, you receive a URL in the following format:
<user-session-id>
is the UUID part of the URL (e.g., d3554524-453d-4d85-9a04-d78bc539a2f7
).
This unique URL is tied to your specific Blazing session and webhook configuration.
Send a POST
request to the full Webhook URL using the following headers:
Content-Type
application/json
Accept
application/json
Authorization
Bearer <ACCESS_TOKEN>
Origin
https://webhook.blazingworld.me
The body must contain a single parameter:
contract
string
The on-chain contract address of the token.
The user-session-id
is embedded in the URL. Do not include it as a header.
The contract
field must be a valid on-chain token address (e.g. 0xabc123...
).
Ensure all headers and the JSON body are set correctly — otherwise, the webhook will fail.
Open the .