List all stations for the airport
GET/airports/:icao/stations
Returns a list of all stations for the specified airport.
Request
Path Parameters
icao stringrequired
Airport ICAO
Example: KJFK
Responses
- 200
- 404
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
callsign string
Station callsign
name string
Station name
frequency string
Station frequency
ctaf boolean
True if the frequency should be used as CTAF when no ATC is online, false otherwise
{
"data": [
{
"callsign": "JFK_TWR",
"name": "Kennedy Tower",
"frequency": 119.1,
"ctaf": true
}
]
}
Resource Not Found
- application/json
- Schema
- Example (from schema)
Schema
message string
Message response
{
"message": "airport could not be found"
}
Loading...