ATIS Relay provides several API endpoints for accessing ATIS data:
Retrieve ATIS information for a specific airport.
GET https://atisrelay.com/api/atis?code=KSAN
Response:
{
"code": "KSAN",
"name": "San Diego International Airport",
"letter": "S",
"atis": "Information Sierra 2351Z. Wind 320 at 11 gusts 18. Visibility 10. Few clouds at 1000, few clouds at 5000, broken clouds at 20000. Temperature 23, dewpoint 19. Altimeter 2979.",
"updated_at": "2024-03-19T23:51:00Z"
}
Get a list of all supported airports.
GET https://atisrelay.com/api/atis_relay_index
Response:
{
"airports": [
{
"code": "KSAN",
"name": "San Diego International Airport",
"datis": true
}
]
}
Get recently updated ATIS information.
GET https://atisrelay.com/api/recents
Response:
{
"recents": [
{
"code": "KSAN",
"atis": "Information Sierra 2351Z...",
"updated_at": "2024-03-19T23:51:00Z"
}
]
}
Retrieve NOTAMs for a specific airport.
GET https://atisrelay.com/show_notams?code=KSAN
Response:
{
"code": "KSAN",
"notams": [
{
"id": "02/021",
"text": "RWY 09/27 CLSD"
}
]
}
ATIS Relay's API is available for integration with your aviation software projects. For API access and licensing, please contact support@flyownnav.com.