🚀 White-Label Signals API — Now Available
Plug AI Trading Intelligence
Into Your App
Access AlphaTerminal's momentum signals, earnings catalysts, social sentiment, and AI analysis via a clean REST API. Ship in minutes, not months.
Quick Start
Authenticate with X-Api-Key header. Works with any HTTP client.
# Get top momentum signals
curl https://alphasterminal.com/api/v1/signals/momentum \
-H "X-Api-Key: at_your_api_key_here"
# AI analysis for NVDA (Business+ tier)
curl https://alphasterminal.com/api/v1/ai/analysis/NVDA \
-H "X-Api-Key: at_your_api_key_here"
# Response
{
"success": true,
"count": 12,
"data": [
{
"ticker": "NVDA",
"direction": "bullish",
"conviction": "high",
"conviction_score": 9,
"thesis": "Analyst upgrade + options flow spike..."
}
]
}
const API_KEY = 'at_your_api_key_here';
const BASE = 'https://alphasterminal.com/api/v1';
// Fetch momentum signals
const res = await fetch(`${BASE}/signals/momentum?limit=10`, {
headers: { 'X-Api-Key': API_KEY }
});
const { data } = await res.json();
// Real-time via webhook (Startup+ tier)
// Configure your webhook URL in the portal
// AlphaTerminal will POST new signals as they generate
// AI analysis (Business+ tier)
const ai = await fetch(`${BASE}/ai/analysis/TSLA`, {
headers: { 'X-Api-Key': API_KEY }
});
const { analysis } = await ai.json();
console.log(analysis.bias, analysis.confidence);
import requests
API_KEY = "at_your_api_key_here"
BASE = "https://alphasterminal.com/api/v1"
headers = {"X-Api-Key": API_KEY}
# Momentum signals
r = requests.get(f"{BASE}/signals/momentum", params={"limit": 20}, headers=headers)
signals = r.json()["data"]
# Trending tickers (last 6 hours)
r = requests.get(f"{BASE}/market/trending", params={"window": "6h"}, headers=headers)
trending = r.json()["data"]
# AI analysis
r = requests.get(f"{BASE}/ai/analysis/AAPL", headers=headers)
print(r.json()["analysis"]["bias"])
API Keys
Manage your API keys below. Keys are shown only once at creation.
🔑 Your new API key:
⚠ Save this key now — it will not be shown again after you close this message.
Activate your subscription to enable this key's full tier limits.