Webhook
With Webhook, you will be able to transfer data generated in a bambamsignals.com to anywhere.
Last updated
With Webhook, you will be able to transfer data generated in a bambamsignals.com to anywhere.
Last updated
When a signal is activated, Webhooks sends a POST request to the URL you specified.
Two fixed data are sent as pair and symbol in signal triggering
In the POST request to be triggered, you must use double curly braces to get this data.
for pair data : {{pair}}
for symbol data : {{symbol}}
Apart from these 2 fixed data, you can add any information you want to the data to be sent.
Example POST data could be as follows.
{"signal_name":"Golden Cross For 15Min","pair":"{{pair}}" , "symbol":"{{symbol}}"}
In this example, if there is a signal for MATIC in BTC parity, the POST data to be sent to the specified URL will be as follows.
{"signal_name":"Golden Cross For 15Min","pair":"BTC" , "symbol":"MATIC"}
id=1,signal_name=Golden Cross For 15Min,type=futures,pair={{pair}},symbol={{symbol}}
In this example, if there is a signal for MATIC in BTC parity, the POST data to be sent to the specified URL will be as follow.
id=1,signal_name=Golden Cross For 15Min,type=futures,pair=BTC,symbol=MATIC
As can be understood from the examples above, you can edit the data to be sent except for {{pair}} and {{symbol}} according to your needs
Note :
URL = Max must be 255 characters.
POST DATA = Max must be 255 characters.