Build custom trading bots and software.
Create your own trading bots and software tailored to your unique investment style.
Webhooks allow you to place orders on the exchange using a simple HTTP request. This makes it easy to integrate your trading bot with applications, signals from TradingView, or your own analytical tools.
Create your own trading bots and software tailored to your unique investment style.
Automate your trading strategy and let the system work 24/7 without breaks.
Convert TradingView alerts directly into live exchange orders instantly and automatically.
Webhooks allow you to execute trades across multiple exchanges through simple HTTP POST requests. They are perfect for automating complex trading strategies, enabling bot developers to integrate trading logic seamlessly, responding instantly to alerts, or embedding trading functionality into any backend system for full automation.
Start by configuring a webhook: choose a name, pick your exchange, and connect API keys to begin automating your trades.
Trigger your webhook with a simple HTTP POST request from any app, script, or platform like TradingView.
Monitor the full history of each webhook - including request details, exchange responses, and execution results.
Choose the action to perform: BUY to acquire assets, SELL to offload them, or SET to rebalance your position to a defined quantity.
Enter the amount of the asset you want to buy, sell, or set. Use decimal values for precision, e.g., 0.0034
Specify the trading pair or asset symbol. Make sure to use the correct symbol recognized by the exchange.
This is the unique URL assigned to your webhook. Send your POST request here to trigger automated trading based on the parameters you define.
https://psyll.com/env/webhook/{WEBHOOK-ID}
This is the POST payload your webhook expects. It specifies the trading action, the quantity, and the asset symbol. This data tells the webhook what action to take, how much to trade, and on which asset.
Here are ready-to-use code snippets for various languages and platforms. Use them to integrate the webhook into your app, script, or automation tool in seconds.
When your request is received, the system will return a JSON response showing the execution status, action taken, and current usage limits based on your plan.
{
"status": "success",
"message": "Order created successfully",
"webhook": 1,
"action": "BUY",
"quantity": 0.01,
"symbol": "BTCUSDT",
"limit": {
"account": "Free",
"max_per_day": 10,
"usage": 1
}
}
Manage your webhooks in one place. View request history, monitor execution results, and configure your trading endpoints easily.
Explore detailed guides and examples on how to build, send, and monitor webhook requests for fully automated trading execution.
Browse Psyll open-source tools and code examples to integrate webhook functionality into your apps and trading bots with ease.