API & Data
Integrate SkyGrid anomaly intelligence directly into your SIEM, research pipeline, or operations dashboard. All endpoints use JSON over HTTPS and are documented via an OpenAPI 3.0 contract.
Eight Anomaly Classes
Loiter
Sustained dwell in a single H3 cell
Ghost Aircraft
Airborne contact with no callsign
Squawk Emergency
7500 / 7600 / 7700 transponder codes
Rapid Descent
Descent rate exceeding safety threshold
ICAO Spoof
Same ICAO24 at impossible distances
Formation Flight
5+ aircraft co-located above 80 kts
Callsign Duplicate
Multiple ICAO24s sharing one callsign
GPS Jamming
Ghost clusters indicating RF interference
Key Endpoints
/api/v1/network/anomaly-leaderboard
Anomaly Leaderboard
Country and region-level event counts across all 8 anomaly types, with configurable time windows (24h, 7d, 30d).
/api/v1/network/live
Live Network Snapshot
Recently active ground stations with privacy-preserving coordinate fuzzing (~11 km precision).
/api/v1/network/stats
Network Statistics
Platform-wide KPIs including tracked aircraft, active anomalies, and poll cadence.
/api/v1/network/mission-summary
Mission Summary
High-level mission status — watch-area count, active rules, and alert delivery health.
/api/v1/watch-grids
Create Watch Area
Define a geographic monitoring area using H3 cells and attach anomaly detection rules.
/api/v1/network/enrichment-summary
Enrichment Summary
Weather conditions, NOTAM correlation, and location context for anomaly events.
Full endpoint list including authentication, watch-area CRUD, and event queries available in the interactive docs.
Enterprise Sandbox Dataset (7 Days)
Download a curated sample of raw telemetry plus stitched composites, manifest metadata, and source lineage for model validation and backtesting.
Recorded for follow-up: email, optional company/use case, request timestamp, source endpoint, and browser user-agent.
Sample Response
{
"window": "24h",
"anomalyType": "loiter",
"totalEvents": 342,
"generatedAt": "2026-04-12T08:00:00Z",
"regions": [
{
"name": "Eastern Europe",
"loiter": 87,
"ghost": 41,
"squawk": 12,
"total": 204
}
],
"countries": [
{
"name": "Turkey",
"iso3": "TUR",
"loiter": 34,
"ghost": 18,
"total": 91
}
]
}