We take care of the data, so you can focus on your alpha.

Screeners, live events, filings, financials and ownership—every dataset callable as a tool by you or your agent.
Integrating takes just a few lines of code and less than five minutes.
import requests
BASE = "https://api.focusalpha.ai/v1"
auth = {"Authorization": "Bearer fa_live_..."}
# Look up a company in the registry
nvda = requests.get(f"{BASE}/companies",
params={"ticker": "NVDA"}, headers=auth).json()
# Labelled real-time news events for it
events = requests.get(f"{BASE}/companies/NVDA/news/events",
params={"min_impact": 60}, headers=auth).json()
for e in events["data"]:
print(e["headline"], e["direction"], e["peak_impact"])