Developer Portal
Build with EOSYN Space Intelligence
EOSYN Atlas exposes measurement-grade geospatial intelligence through a REST API. Read the reference, run calls in the sandbox, and wire risk scores and change events into your systems.
Make Your First API Call
A single request returns a confidence-scored risk assessment for any lat/lng and peril.
import eosyn
client = eosyn.Client(api_key="your-api-key")
result = client.risk.get(lat=51.5074, lng=-0.1278, peril="flood")
print(f"Risk Score: {result.risk_score}")
print(f"Confidence: {result.confidence}")
print(f"Model Version: {result.model_version}")REST APIs
Access risk scores, change detection, and anomaly alerts via REST.
Webhooks
Real-time event notifications for threshold breaches and anomalies.
SDKs
Official Python and JavaScript/TypeScript SDKs.