Aviation Weather Center · Example Payload

Aviationweather Navaid Example

AviationWeatherGovernmentNOAANWSMETARTAFPIREPSIGMETAIRMETOpen DataPublic APIs

Aviationweather Navaid Example is an example object payload from Aviation Weather Center, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationsummaryrequestresponse

Example Payload

Raw ↑
{
  "operation": "GET /api/data/navaid",
  "summary": "Navigational aid info for MCI VOR",
  "request": {
    "method": "GET",
    "url": "https://aviationweather.gov/api/data/navaid?ids=MCI&format=json"
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "body": [
      {
        "id": "MCI",
        "name": "KANSAS CITY",
        "type": "VOR/DME",
        "freq": "112.6",
        "channel": "73X",
        "lat": 39.2737,
        "lon": -94.7322,
        "elev": 1024,
        "magvar": 3,
        "state": "MO",
        "country": "US"
      }
    ]
  }
}