Stream Sentinel into the systems your team already lives in.
Connect via API
SDKs in Python and TypeScript, plus a plain HTTP endpoint for everything else. Pipe alerts to Slack, notebooks, custom dashboards, internal tools — wherever your practitioners work. Full reference, auth, and webhook setup arrive with onboarding.
from amatra import Amatra
client = Amatra(api_key=os.environ["AMATRA_API_KEY"])
# Subscribe to live alerts
for alert in client.sentinel.stream():
print(alert.signal, alert.athlete_id, alert.summary)
