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/public/v1/alerts \ -H "X-API-Key: sk_your_api_key"
curl -X POST https://stockalert.pro/api/public/v1/alerts \ -H "X-API-Key: sk_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "symbol": "AAPL", "condition": "price_above", "threshold": 200 }'
/api/public/v1/alerts
List all alerts/api/public/v1/alerts
Create new alert/api/public/v1/alerts/{id}
Get alert details/api/public/v1/alerts/{id}
Update alert/api/public/v1/alerts/{id}
Delete alert/api/public/v1/webhooks
List webhooks/api/public/v1/webhooks
Create webhook/api/public/v1/webhooks/{id}
Delete webhookAll API requests require authentication using your API key in the header:
X-API-Key: sk_your_api_key_here
https://stockalert.pro/api/public/v1
Free: 100/hour • Premium: 10,000/hour
Free: 1 key • Premium: Unlimited keys
Email notifications supported. SMS only to verified phone.
npm install @stockalert/sdk
const 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 stockalert
client = 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-stockalert
Get 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
Real-time event notifications
Error codes and handling
Usage limits and quotas
Official client libraries
Code samples and tutorials