API Documentation
Integrate with our powerful crypto signal analysis platform
Available Endpoints
GET
/api/v1/signals
Retrieve the latest trading signals from monitored channels
Parameters
| Name | Type | Description |
|---|---|---|
| symbol | string | Filter by trading pair (e.g. BTC/USDT) |
| type | string | BUY or SELL |
| limit | integer | Number of results to return (default: 10) |
POST
/api/v1/webhook
Set up a webhook to receive real-time signal notifications
Request Body
{
"url": "https://yourdomain.com/webhook",
"events": ["new_signal", "signal_update"],
"secret": "your_webhook_secret"
}
GET
/api/v1/analytics
Get performance analytics for signals and traders
Response Example
{
"success_rate": 72.5,
"avg_profit": 8.2,
"top_traders": [
{
"name": "CryptoWhale",
"success_rate": 85.3,
"total_signals": 142
}
]
}
Authentication
All API requests require authentication via API key. Include your API key in the X-API-KEY header.