Build powerful stock monitoring integrations with our simple and intuitive API
Simple JSON-based API with comprehensive error handling
Get instant notifications when alerts trigger
Official SDKs for JavaScript, Python, Slack, and n8n
Sign in to your account and generate an API key from Account Settings
curl -X GET https://stockalert.pro/api/v1/alerts \ -H "X-API-Key: sk_your_api_key"
curl -X POST https://stockalert.pro/api/v1/alerts \
-H "X-API-Key: sk_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"symbol": "AAPL",
"condition": "price_above",
"threshold": 200
}'/api/v1/alertsList all alerts/api/v1/alertsCreate new alert/api/v1/alerts/{id}Get alert details/api/v1/alerts/{id}Update alert/api/v1/alerts/{id}Delete alert/api/v1/alerts/{id}/pausePause alert/api/v1/alerts/{id}/activateActivate alert/api/v1/alerts/{id}/historyAlert history/api/v1/watchlistList watchlist items/api/v1/watchlistAdd watchlist item/api/v1/watchlist/{id}Update watchlist item/api/v1/watchlist/{id}Delete watchlist item/api/v1/watchlist/orderSwap intention (reanalyze)/api/v1/webhooksList webhooks/api/v1/webhooksCreate webhook/api/v1/webhooks/{id}Delete webhook/api/v1/webhooks/testSend test eventAll API requests require authentication using your API key in the header:
X-API-Key: sk_your_api_key_herehttps://stockalert.pro/api/v1Basic: 100/hour • Premium: 10,000/hour (default tiers)
Free: 1 key • Premium: Unlimited keys
Email notifications supported. SMS only to verified phone.
npm install @stockalert/sdkconst client = new StockAlert('sk_...');
// Create alert
const alert = await client.alerts.create({
symbol: 'AAPL',
condition: 'price_above',
threshold: 200
});
// List alerts
const alerts = await client.alerts.list();pip install stockalertclient = StockAlert('sk_...')
# Create alert
alert = client.alerts.create(
symbol='AAPL',
condition='price_above',
threshold=200
)
# List alerts
alerts = client.alerts.list()Use our official n8n node for no-code automation workflows. Available in the n8n community nodes.
n8n-nodes-stockalertGet real-time stock alerts directly in Slack! Our official Slack app brings the full power of StockAlert.pro to your team's workspace.
Quick start guide and overview
API key authentication
Alert endpoints reference
Watchlist endpoints reference
Real-time event notifications
Error codes and handling
Usage limits and quotas
Official client libraries
Code samples and tutorials