Integrate catalyst-driven signals, TMS scores, and options flow data directly into your trading system. Available on the ELITE plan.
Get ELITE Access →https://api.tradeainews.comAuthenticate every request with your API key using the X-API-Key header. Generate keys in your dashboard.
curl https://api.tradeainews.com/v1/signals/recent \
-H "X-API-Key: tai_your_key_here"import requests
API_KEY = "tai_your_key_here"
BASE_URL = "https://api.tradeainews.com"
HEADERS = {"X-API-Key": API_KEY}
# Get top movers from the last 24h with TMS >= 75
resp = requests.get(
f"{BASE_URL}/v1/signals/top-movers",
headers=HEADERS,
params={"min_score": 75, "hours": 24, "limit": 10},
)
resp.raise_for_status()
for signal in resp.json():
print(
f"{signal['ticker']:6s} "
f"TMS={signal['top_mover_score']:5.1f} "
f"tier={signal['tier']:12s} "
f"{signal['headline'][:70]}"
)