NOTAMs RAW endpoint (get-notams-raw v2)
The following document contains details about RAW NOTAMs active endpoint in version v2.
The output contains NOTAMs (and their interpretations) valid for a moment of query, filtered out to specific dates. The datetime filters (starts_at
/ ends_at
) takes into consideration notam firm range, without using the timing section for the filtering (schedules
). The endpoint is created to prefetch the notams before pulling interpretations for verification purposes.
Limitations:
The endpoint accepts 5 ICAO codes per call.
The start date cannot be earlier than one day before current UTC datetime.
ends_at must be later than starts_at
Example param setup in the URL:
https://api.notamify.com/api/v2/notams/raw?location=EDDM&location=EGLL&starts_at=2025-05-06T00:00:00.000&ends_at=2025-05-06T23:59:00.000
Returns raw NOTAMs without AI interpretations. Same query parameters and response shape as /notams, but each NOTAM has interpretation set to null. The endpoint purpose is verifying query and raw data before AI interpretation.
Page number to retrieve. Defaults to 1.
1
Number of NOTAMs per page. Defaults to 30.
30
List of 4-character ICAO airport codes or 3-character domestic airport codes. Maximum 5 locations. Can be provided as location.
KJFK
List of NOTAM IDs
Start date for the time period (YYYY-MM-DDTHH:MM:SSZ)
2024-01-01T00:00:00Z
End date for the time period (YYYY-MM-DDTHH:MM:SSZ)
2024-01-01T00:00:00Z
Success
GET /api/v2/notams/raw HTTP/1.1
Host: api.notamify.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Success
{
"notams": [
{
"id": "7e1b2056-301d-4723-a7e8-d0994fb7d6b6",
"notam_number": "A0681/25",
"location": "EPWA",
"icao_code": "EPWA",
"starts_at": "2025-04-04T18:00:00Z",
"ends_at": "2025-06-30T02:00:00Z",
"issued_at": "2025-03-19T12:37:00Z",
"is_estimated": false,
"is_permanent": false,
"message": "NAVIGATION WARNING...",
"icao_message": "A0681/25 NOTAMN...",
"interpretation": null
}
],
"total_count": 1,
"page": 1,
"per_page": 30
}
Last updated