-
Notifications
You must be signed in to change notification settings - Fork 0
JATOC API
APIs for managing ATC incidents in the Joint Air Traffic Operations Command system.
Returns list of incidents.
Access: Public
Parameters:
| Name | Type | Description |
|---|---|---|
status |
string | active, resolved, all |
type |
string | atc_zero, atc_alert, atc_limited, non_responsive |
facility |
string | Filter by facility code |
from |
datetime | Start date (ISO 8601) |
to |
datetime | End date (ISO 8601) |
limit |
int | Max results |
Response:
{
"success": true,
"count": 3,
"incidents": [
{
"id": 456,
"facility": "ZNY",
"type": "atc_limited",
"ops_level": 2,
"description": "Reduced staffing",
"started_at": "2026-01-10T14:00:00Z",
"expected_duration": 120,
"status": "active"
}
]
}Returns single incident with full details.
Access: Public
Parameters:
| Name | Type | Description |
|---|---|---|
id |
int | Incident ID (required) |
Response includes:
- Full incident details
- Update timeline
- Related TMIs
- Resolution notes (if resolved)
Creates a new incident.
Access: Authenticated (DCC role)
Request:
{
"facility": "ZNY",
"type": "atc_limited",
"ops_level": 2,
"description": "Reduced staffing - expect delays",
"expected_duration": 120,
"affected_area": "New York TRACON airspace"
}Response:
{
"success": true,
"id": 456,
"message": "Incident created"
}Updates an existing incident.
Access: Authenticated (DCC role)
Parameters:
| Name | Type | Description |
|---|---|---|
id |
int | Incident ID (required) |
Request:
{
"ops_level": 1,
"update_note": "Staffing restored to normal",
"status": "resolved"
}Deletes an incident (admin only).
Access: Authenticated (Admin role)
Parameters:
| Name | Type | Description |
|---|---|---|
id |
int | Incident ID (required) |
Returns current NAS operations level.
Access: Public
Response:
{
"success": true,
"ops_level": 1,
"active_incidents": 0,
"last_updated": "2026-01-10T14:30:00Z"
}| Type | Description |
|---|---|
atc_zero |
Complete suspension of ATC |
atc_alert |
Significant degradation |
atc_limited |
Reduced services |
non_responsive |
Communication issues |
| Level | Description |
|---|---|
| 1 | Normal operations |
| 2 | Degraded - expect delays |
| 3 | Severely impacted |
- JATOC - JATOC user interface
- API Reference - Complete API overview
- NOD Dashboard - Operations dashboard
PERTI - Virtual Air Traffic Control System Command Center Production Site | GitHub | Report Issue
Last updated: 2026-02-25
Home Navigation Helper (NEW)
Comprehensive Guides
Getting Started
Architecture
Algorithms & Processing
- Algorithms Overview
- Algorithm ETA Calculation
- Algorithm Trajectory Tiering
- Algorithm Zone Detection
- Algorithm Route Parsing
- Algorithm Data Refresh
SWIM API (Public/External)
- SWIM API
- SWIM Routes API
- SWIM Playbook API
- SWIM Route Data Integration
- Building Route Processing
- CDM Connector Guide
PERTI API (Internal)
Features
Walkthroughs
Operations
Development
Analysis
- Analysis (index)
- ETA Accuracy (Jan-Mar 2026)
Reference